Searched refs:BracketDepth (Results 1 - 5 of 5) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DPreprocessor.cpp1070 unsigned BracketDepth = 0; local
1077 ++BracketDepth;
1081 if (BracketDepth == 0)
1083 --BracketDepth;
1087 if (BracketDepth == 0)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DFileCheck.cpp851 size_t BracketDepth = 0; local
854 if (Str.startswith("]]") && BracketDepth == 0)
865 BracketDepth++;
868 if (BracketDepth == 0) {
874 BracketDepth--;
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Parse/
H A DRAIIObjectsForParser.h435 if (getDepth() < P.getLangOpts().BracketDepth) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParser.cpp2483 << P.getLangOpts().BracketDepth;
2499 if (getDepth() < P.getLangOpts().BracketDepth)
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp2882 Opts.BracketDepth = getLastArgIntValue(Args, OPT_fbracket_depth, 256, Diags);

Completed in 3097 milliseconds