Home
last modified time | relevance | path

Searched refs:SkipInfo (Results 1 – 5 of 5) sorted by relevance

/netbsd/external/apache2/llvm/dist/clang/include/clang/Lex/
H A DPreprocessor.h487 bool reachedEOFWhileSkipping() const { return SkipInfo.hasValue(); } in reachedEOFWhileSkipping()
489 void clearSkipInfo() { SkipInfo.reset(); } in clearSkipInfo()
491 llvm::Optional<PreambleSkipInfo> SkipInfo; variable
2334 llvm::Optional<PreambleSkipInfo> SkipInfo) { in setReplayablePreambleConditionalStack() argument
2337 PreambleConditionalStack.SkipInfo = SkipInfo; in setReplayablePreambleConditionalStack()
2341 return PreambleConditionalStack.SkipInfo; in getPreambleSkipInfo()
/netbsd/external/apache2/llvm/dist/clang/lib/Lex/
H A DPreprocessor.cpp675 PreambleConditionalStack.SkipInfo->HashTokenLoc, in replayPreambleConditionalStack()
676 PreambleConditionalStack.SkipInfo->IfTokenLoc, in replayPreambleConditionalStack()
677 PreambleConditionalStack.SkipInfo->FoundNonSkipPortion, in replayPreambleConditionalStack()
678 PreambleConditionalStack.SkipInfo->FoundElse, in replayPreambleConditionalStack()
679 PreambleConditionalStack.SkipInfo->ElseLoc); in replayPreambleConditionalStack()
H A DPPDirectives.cpp476 PreambleConditionalStack.SkipInfo.emplace( in SkipExcludedConditionalBlock()
/netbsd/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTWriter.cpp2166 auto SkipInfo = PP.getPreambleSkipInfo(); in WritePreprocessor() local
2167 if (SkipInfo.hasValue()) { in WritePreprocessor()
2169 AddSourceLocation(SkipInfo->HashTokenLoc, Record); in WritePreprocessor()
2170 AddSourceLocation(SkipInfo->IfTokenLoc, Record); in WritePreprocessor()
2171 Record.push_back(SkipInfo->FoundNonSkipPortion); in WritePreprocessor()
2172 Record.push_back(SkipInfo->FoundElse); in WritePreprocessor()
2173 AddSourceLocation(SkipInfo->ElseLoc, Record); in WritePreprocessor()
H A DASTReader.cpp3369 llvm::Optional<Preprocessor::PreambleSkipInfo> SkipInfo; in ReadASTBlock() local
3376 SkipInfo.emplace(HashToken, IfTokenLoc, FoundNonSkipPortion, in ReadASTBlock()
3388 PP.setReplayablePreambleConditionalStack(ConditionalStack, SkipInfo); in ReadASTBlock()