Home
last modified time | relevance | path

Searched refs:BracketDepth (Results 1 – 8 of 8) sorted by relevance

/src/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1094 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1101 ++BracketDepth; in CollectPpImportSuffix()
1105 if (BracketDepth == 0) in CollectPpImportSuffix()
1107 --BracketDepth; in CollectPpImportSuffix()
1111 if (BracketDepth == 0) in CollectPpImportSuffix()
/src/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h470 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/src/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1394 size_t BracketDepth = 0; in FindRegexVarEnd() local
1397 if (Str.starts_with("]]") && BracketDepth == 0) in FindRegexVarEnd()
1408 BracketDepth++; in FindRegexVarEnd()
1411 if (BracketDepth == 0) { in FindRegexVarEnd()
1417 BracketDepth--; in FindRegexVarEnd()
/src/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp553 if (NumExpansions && S.getLangOpts().BracketDepth < NumExpansions) { in calculateConstraintSatisfaction()
556 << *NumExpansions << S.getLangOpts().BracketDepth in calculateConstraintSatisfaction()
H A DTreeTransform.h15290 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < NumExpansions) { in TransformCXXFoldExpr()
15293 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/src/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2778 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2794 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/src/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def417 BENIGN_LANGOPT(BracketDepth, 32, 256,
/src/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7922 MarshallingInfoInt<LangOpts<"BracketDepth">, "256">;