Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1085 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1092 ++BracketDepth; in CollectPpImportSuffix()
1096 if (BracketDepth == 0) in CollectPpImportSuffix()
1098 --BracketDepth; in CollectPpImportSuffix()
1102 if (BracketDepth == 0) in CollectPpImportSuffix()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h470 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/freebsd-14.2/contrib/llvm-project/llvm/lib/FileCheck/
H A DFileCheck.cpp1392 size_t BracketDepth = 0; in FindRegexVarEnd() local
1395 if (Str.starts_with("]]") && BracketDepth == 0) in FindRegexVarEnd()
1406 BracketDepth++; in FindRegexVarEnd()
1409 if (BracketDepth == 0) { in FindRegexVarEnd()
1415 BracketDepth--; in FindRegexVarEnd()
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2745 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2761 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Basic/
H A DLangOptions.def400 BENIGN_LANGOPT(BracketDepth, 32, 256,
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DTreeTransform.h14256 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < NumExpansions) { in TransformCXXFoldExpr()
14259 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Driver/
H A DOptions.td7608 MarshallingInfoInt<LangOpts<"BracketDepth">, "256">;