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

  /external/clang/include/clang/Lex/
TokenConcatenation.h 62 const Token &PrevTok,
  /external/clang/lib/Lex/
TokenConcatenation.cpp 142 /// AvoidConcat - If printing PrevTok immediately followed by Tok would cause
154 const Token &PrevTok,
160 SourceLocation PrevSpellLoc = SM.getSpellingLoc(PrevTok.getLocation());
162 if (PrevSpellLoc.getLocWithOffset(PrevTok.getLength()) == SpellLoc)
165 tok::TokenKind PrevKind = PrevTok.getKind();
166 if (PrevTok.getIdentifierInfo()) // Language keyword or named operator.
169 // Look up information on when we should avoid concatenation with prevtok.
172 // If prevtok never causes a problem for anything after it, return quickly.
220 if (!PrevTok.hasUDSuffix())
240 return IsIdentifierStringPrefix(PrevTok);
    [all...]
  /external/clang/lib/Frontend/
PrintPreprocessedOutput.cpp 169 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
171 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
600 Token PrevPrevTok, PrevTok;
602 PrevTok.startToken();
613 // If we haven't emitted a token on this line yet, PrevTok isn't
617 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
654 PrevPrevTok = PrevTok;
655 PrevTok = Tok;
  /external/clang/lib/Parse/
ParseOpenMP.cpp 201 Token PrevTok = Tok;
219 Diag(PrevTok.getLocation(), diag::err_expected_ident)
220 << SourceRange(PrevTok.getLocation(), PrevTokLocation);
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 538 Token PrevTok = Tok;
558 ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok))
565 PrevPrevTok = PrevTok;
566 PrevTok = Tok;
  /external/clang/lib/AST/
CommentParser.cpp 366 Token PrevTok = Tok;
369 putBack(PrevTok);
  /external/clang/include/clang/Parse/
Parser.h 573 Token PrevTok;
580 PrevTok = P.Tok;
599 P.Tok = PrevTok;
    [all...]

Completed in 877 milliseconds