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 128 /// AvoidConcat - If printing PrevTok immediately followed by Tok would cause
140 const Token &PrevTok,
145 if (PrevTok.getLocation().isFileID() && Tok.getLocation().isFileID() &&
146 PrevTok.getLocation().getLocWithOffset(PrevTok.getLength()) ==
150 tok::TokenKind PrevKind = PrevTok.getKind();
151 if (PrevTok.getIdentifierInfo()) // Language keyword or named operator.
154 // Look up information on when we should avoid concatenation with prevtok.
157 // If prevtok never causes a problem for anything after it, return quickly.
205 return IsIdentifierStringPrefix(PrevTok);
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 143 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
145 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
498 Token PrevPrevTok, PrevTok;
500 PrevTok.startToken();
507 // If we haven't emitted a token on this line yet, PrevTok isn't
511 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
542 PrevPrevTok = PrevTok;
543 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 569 Token PrevTok;
574 PrevTok = P.Tok;
586 P.Tok = PrevTok;
    [all...]

Completed in 542 milliseconds