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 161 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
163 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
602 Token PrevPrevTok, PrevTok;
604 PrevTok.startToken();
615 // If we haven't emitted a token on this line yet, PrevTok isn't
619 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
663 PrevPrevTok = PrevTok;
664 PrevTok = Tok;
  /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/Parse/
ParseOpenMP.cpp 245 Token PrevTok = Tok;
263 Diag(PrevTok.getLocation(), diag::err_expected)
265 << SourceRange(PrevTok.getLocation(), PrevTokLocation);
  /external/clang/lib/AST/
CommentParser.cpp 375 Token PrevTok = Tok;
378 putBack(PrevTok);
  /external/clang/include/clang/Parse/
Parser.h 657 Token PrevTok;
664 PrevTok = P.Tok;
683 P.Tok = PrevTok;
    [all...]

Completed in 409 milliseconds