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

  /external/clang/include/clang/Lex/
TokenConcatenation.h 62 const Token &PrevTok,
  /external/clang/lib/Lex/
TokenConcatenation.cpp 141 /// AvoidConcat - If printing PrevTok immediately followed by Tok would cause
153 const Token &PrevTok,
158 if (PrevTok.getLocation().isFileID() && Tok.getLocation().isFileID() &&
159 PrevTok.getLocation().getLocWithOffset(PrevTok.getLength()) ==
163 tok::TokenKind PrevKind = PrevTok.getKind();
164 if (PrevTok.getIdentifierInfo()) // Language keyword or named operator.
167 // Look up information on when we should avoid concatenation with prevtok.
170 // If prevtok never causes a problem for anything after it, return quickly.
218 if (!PrevTok.hasUDSuffix()
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 142 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
144 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
496 Token PrevPrevTok, PrevTok;
498 PrevTok.startToken();
505 // If we haven't emitted a token on this line yet, PrevTok isn't
509 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
540 PrevPrevTok = PrevTok;
541 PrevTok = Tok;
  /external/clang/lib/Rewrite/
HTMLRewrite.cpp 533 Token PrevTok = Tok;
553 ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok))
560 PrevPrevTok = PrevTok;
561 PrevTok = Tok;
  /external/clang/include/clang/Parse/
Parser.h 586 Token PrevTok;
591 PrevTok = P.Tok;
603 P.Tok = PrevTok;
    [all...]

Completed in 57 milliseconds