Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1125 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1132 ++BracketDepth; in CollectPpImportSuffix()
1136 if (BracketDepth == 0) in CollectPpImportSuffix()
1138 --BracketDepth; in CollectPpImportSuffix()
1142 if (BracketDepth == 0) in CollectPpImportSuffix()
/freebsd/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h470 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/freebsd/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1434 size_t BracketDepth = 0; in FindRegexVarEnd() local
1437 if (Str.starts_with("]]") && BracketDepth == 0) in FindRegexVarEnd()
1448 BracketDepth++; in FindRegexVarEnd()
1451 if (BracketDepth == 0) { in FindRegexVarEnd()
1457 BracketDepth--; in FindRegexVarEnd()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaConcept.cpp314 if (NumExpansions && S.getLangOpts().BracketDepth < *NumExpansions) { in EvaluateFoldExpandedConstraintSize()
317 << *NumExpansions << S.getLangOpts().BracketDepth in EvaluateFoldExpandedConstraintSize()
H A DTreeTransform.h16407 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < *NumExpansions) { in TransformCXXFoldExpr()
16410 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2633 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2649 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def384 LANGOPT(BracketDepth, 32, 256, Benign,
/freebsd/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td8464 MarshallingInfoInt<LangOpts<"BracketDepth">, "2048">;