HomeSort by relevance Sort by last modified time
    Searched refs:UnwrappedLine (Results 1 - 5 of 5) sorted by null

  /external/clang/lib/Format/
UnwrappedLineParser.h 36 struct UnwrappedLine {
37 UnwrappedLine();
40 /// \brief The \c Tokens comprising this \c UnwrappedLine.
43 /// \brief The indent level of the \c UnwrappedLine.
46 /// \brief Whether this \c UnwrappedLine is part of a preprocessor directive.
55 virtual void consumeUnwrappedLine(const UnwrappedLine &Line) = 0;
134 std::unique_ptr<UnwrappedLine> Line;
145 SmallVector<UnwrappedLine, 8> Lines;
150 SmallVector<UnwrappedLine, 4> PreprocessorDirectives;
156 SmallVectorImpl<UnwrappedLine> *CurrentLines
    [all...]
TokenAnalyzer.h 92 void consumeUnwrappedLine(const UnwrappedLine &TheLine) override;
101 SmallVector<SmallVector<UnwrappedLine, 16>, 2> UnwrappedLines;
TokenAnalyzer.cpp 128 void TokenAnalyzer::consumeUnwrappedLine(const UnwrappedLine &TheLine) {
134 UnwrappedLines.push_back(SmallVector<UnwrappedLine, 16>());
UnwrappedLineParser.cpp 39 ScopedDeclarationState(UnwrappedLine &Line, std::vector<bool> &Stack,
54 UnwrappedLine &Line;
60 ScopedMacroState(UnwrappedLine &Line, FormatTokenSource *&TokenSource,
108 UnwrappedLine &Line;
129 Parser.Line = llvm::make_unique<UnwrappedLine>();
148 std::unique_ptr<UnwrappedLine> PreBlockLine;
149 SmallVectorImpl<UnwrappedLine> *OriginalLines;
204 : Line(new UnwrappedLine), MustBreakBeforeNextToken(false),
210 Line.reset(new UnwrappedLine);
234 for (SmallVectorImpl<UnwrappedLine>::iterator I = Lines.begin()
    [all...]
TokenAnnotator.h 41 AnnotatedLine(const UnwrappedLine &Line)
136 /// \c UnwrappedLine.

Completed in 164 milliseconds