Home
last modified time | relevance | path

Searched refs:PreprocessorDirectives (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DUnwrappedLineParser.cpp145 Parser.CurrentLines = &Parser.PreprocessorDirectives; in ScopedLineState()
160 if (Parser.CurrentLines == &Parser.PreprocessorDirectives) in ~ScopedLineState()
244 PreprocessorDirectives.clear(); in reset()
545 CurrentLines == &Lines ? PreprocessorDirectives.size() : 0; in parseBlock()
694 if (CurrentLines == &PreprocessorDirectives) in conditionalCompilationCondition()
2397 if (CurrentLines == &Lines && !PreprocessorDirectives.empty()) { in addUnwrappedLine()
2399 std::make_move_iterator(PreprocessorDirectives.begin()), in addUnwrappedLine()
2400 std::make_move_iterator(PreprocessorDirectives.end())); in addUnwrappedLine()
2401 PreprocessorDirectives.clear(); in addUnwrappedLine()
H A DUnwrappedLineParser.h195 SmallVector<UnwrappedLine, 4> PreprocessorDirectives; variable