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

  /frameworks/compile/slang/
slang_pragma_recorder.cpp 65 const clang::Token* NextToken = &PP.LookAhead(0);
72 NextToken = &PP.LookAhead(0);
85 NextToken = &PP.LookAhead(0);
slang_rs_pragma_handler.cpp 107 const clang::Token &NextTok = PP.LookAhead(0);
  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 172 const char *LookAhead = CurPtr;
174 if (isdigit(*LookAhead)) {
175 ++LookAhead;
176 } else if (isxdigit(*LookAhead)) {
178 FirstHex = LookAhead;
179 ++LookAhead;
184 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
185 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
  /external/clang/lib/Parse/
ParseInit.cpp 42 switch (PP.LookAhead(0).getKind()) {
65 return PP.LookAhead(0).is(tok::colon);
ParseExprCXX.cpp 391 PP.LookAhead(1).is(tok::identifier)) {
617 /// TryParseLambdaExpression - Use lookahead and potentially tentative
629 // If lookahead indicates this is a lambda...
640 // If lookahead indicates an ObjC message send...
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 424 /// without consuming any tokens. LookAhead(0) returns 'Tok', LookAhead(1)
427 /// Note that this differs from the Preprocessor's LookAhead method, because
432 return PP.LookAhead(N-1);
439 return PP.LookAhead(0);
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 378 /// lookahead. They are "lexed" by the CachingLex() method.
794 /// LookAhead - This peeks ahead N tokens and returns that token without
795 /// consuming any tokens. LookAhead(0) returns the next token that would be
796 /// returned by Lex(), LookAhead(1) returns the token after it, etc. This
799 const Token &LookAhead(unsigned N) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 885 unsigned LookAhead = std::min((unsigned)Sequence.size(),
887 if (LookAhead == 0)
890 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]

Completed in 420 milliseconds