Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/Lex/
H A DPreprocessor.cpp1102 unsigned BracketDepth = 0; in CollectPpImportSuffix() local
1109 ++BracketDepth; in CollectPpImportSuffix()
1113 if (BracketDepth == 0) in CollectPpImportSuffix()
1115 --BracketDepth; in CollectPpImportSuffix()
1119 if (BracketDepth == 0) in CollectPpImportSuffix()
/openbsd-src/gnu/llvm/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h451 if (getDepth() < P.getLangOpts().BracketDepth) { in consumeOpen()
/openbsd-src/gnu/llvm/llvm/lib/FileCheck/
H A DFileCheck.cpp1547 size_t BracketDepth = 0; in FindRegexVarEnd() local
1550 if (Str.startswith("]]") && BracketDepth == 0) in FindRegexVarEnd()
1561 BracketDepth++; in FindRegexVarEnd()
1564 if (BracketDepth == 0) { in FindRegexVarEnd()
1570 BracketDepth--; in FindRegexVarEnd()
/openbsd-src/gnu/llvm/clang/lib/Parse/
H A DParser.cpp2690 << P.getLangOpts().BracketDepth; in diagnoseOverflow()
2706 if (getDepth() < P.getLangOpts().BracketDepth) in expectAndConsume()
/openbsd-src/gnu/llvm/clang/include/clang/Basic/
H A DLangOptions.def384 BENIGN_LANGOPT(BracketDepth, 32, 256,
/openbsd-src/gnu/llvm/clang/lib/Sema/
H A DTreeTransform.h13977 if (NumExpansions && SemaRef.getLangOpts().BracketDepth < NumExpansions) { in TransformCXXFoldExpr()
13980 << *NumExpansions << SemaRef.getLangOpts().BracketDepth in TransformCXXFoldExpr()
/openbsd-src/gnu/llvm/clang/include/clang/Driver/
H A DOptions.td6275 MarshallingInfoInt<LangOpts<"BracketDepth">, "256">;