Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp1079 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1086 ++BracketDepth; in CollectPpImportSuffix()
1090 if (BracketDepth == 0) in CollectPpImportSuffix()
1092 --BracketDepth; in CollectPpImportSuffix()
1096 if (BracketDepth == 0) in CollectPpImportSuffix()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h435 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/FileCheck/
H A DFileCheck.cpp1540 size_t BracketDepth = 0; in FindRegexVarEnd() local
1543 if (Str.startswith("]]") && BracketDepth == 0) in FindRegexVarEnd()
1554 BracketDepth++; in FindRegexVarEnd()
1557 if (BracketDepth == 0) { in FindRegexVarEnd()
1563 BracketDepth--; in FindRegexVarEnd()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParser.cpp2535 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2551 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DLangOptions.def356 BENIGN_LANGOPT(BracketDepth, 32, 256,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DTreeTransform.h13441 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < NumExpansions) { in TransformCXXFoldExpr()
13444 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td5521 MarshallingInfoInt<LangOpts<"BracketDepth">, "256">;