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

  /external/clang/lib/Format/
UnwrappedLineParser.cpp 99 static FormatToken FormatTok;
101 FormatTok.Tok.startToken();
102 FormatTok.Tok.setKind(tok::eof);
105 return &FormatTok;
212 FormatTok = nullptr;
231 pushToken(FormatTok);
270 tok::TokenKind kind = FormatTok->Tok.getKind();
271 if (FormatTok->Type == TT_MacroBlockBegin) {
273 } else if (FormatTok->Type == TT_MacroBlockEnd) {
285 if (!FormatTok->is(TT_MacroBlockBegin) && tryToParseBracedList()
    [all...]
FormatTokenLexer.cpp 29 : FormatTok(nullptr), IsFirstToken(true), GreaterStashed(false),
369 Token Tok = FormatTok->Tok;
370 StringRef TokenText = FormatTok->TokenText;
372 unsigned OriginalColumn = FormatTok->OriginalColumn;
373 FormatTok = new (Allocator.Allocate()) FormatToken;
374 FormatTok->Tok = Tok;
376 FormatTok->Tok.getLocation().getLocWithOffset(Tok.getLength() - 1);
377 FormatTok->Tok.setLocation(TokLocation);
378 FormatTok->WhitespaceRange = SourceRange(TokLocation, TokLocation);
379 FormatTok->TokenText = TokenText
    [all...]
UnwrappedLineParser.h 129 bool isOnNewLine(const FormatToken &FormatTok);
141 FormatToken *FormatTok;
FormatTokenLexer.h 66 FormatToken *FormatTok;
Format.cpp     [all...]

Completed in 547 milliseconds