Home
last modified time | relevance | path

Searched refs:FoundNonSkip (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DToken.h335 bool FoundNonSkip; member
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DPPDirectives.cpp705 if (!CondInfo.WasSkipping && !CondInfo.FoundNonSkip) { in SkipExcludedConditionalBlock()
706 CondInfo.FoundNonSkip = true; in SkipExcludedConditionalBlock()
730 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) { in SkipExcludedConditionalBlock()
756 CondInfo.FoundNonSkip = true; in SkipExcludedConditionalBlock()
787 if (CondInfo.WasSkipping || CondInfo.FoundNonSkip) { in SkipExcludedConditionalBlock()
829 CondInfo.FoundNonSkip = true; in SkipExcludedConditionalBlock()
3530 if ((PPOpts->SingleFileParseMode && !CI.FoundNonSkip) || RetainExcludedCB) { in HandleElseDirective()
3610 if ((PPOpts->SingleFileParseMode && !CI.FoundNonSkip) || RetainExcludedCB) { in HandleElifFamilyDirective()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp3632 bool FoundNonSkip = Record[Idx++]; in ReadASTBlock() local
3635 {Loc, WasSkipping, FoundNonSkip, FoundElse}); in ReadASTBlock()
H A DASTWriter.cpp2522 Record.push_back(Cond.FoundNonSkip); in WritePreprocessor()