HomeSort by relevance Sort by last modified time
    Searched full:prevtok (Results 1 - 6 of 6) sorted by null

  /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 154 bool AvoidConcat(const Token &PrevPrevTok, const Token &PrevTok,
156 return ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok);
522 Token PrevPrevTok, PrevTok;
524 PrevTok.startToken();
535 // If we haven't emitted a token on this line yet, PrevTok isn't
539 Callbacks->AvoidConcat(PrevPrevTok, PrevTok, Tok))) {
576 PrevPrevTok = PrevTok;
577 PrevTok = Tok;
  /external/clang/include/clang/Lex/
TokenConcatenation.h 62 const Token &PrevTok,
  /external/clang/lib/Rewrite/Core/
HTMLRewrite.cpp 539 Token PrevTok = Tok;
559 ConcatInfo.AvoidConcat(PrevPrevTok, PrevTok, Tok))
566 PrevPrevTok = PrevTok;
567 PrevTok = Tok;
  /external/clang/lib/AST/
CommentParser.cpp 371 Token PrevTok = Tok;
374 putBack(PrevTok);
  /external/clang/include/clang/Parse/
Parser.h 544 Token PrevTok;
551 PrevTok = P.Tok;
570 P.Tok = PrevTok;
    [all...]

Completed in 201 milliseconds