HomeSort by relevance Sort by last modified time
    Searched refs:LookAhead (Results 1 - 8 of 8) 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/clang/lib/Parse/
ParseInit.cpp 42 switch (PP.LookAhead(0).getKind()) {
65 return PP.LookAhead(0).is(tok::colon);
ParseExprCXX.cpp 351 PP.LookAhead(1).is(tok::identifier)) {
575 /// TryParseLambdaExpression - Use lookahead and potentially tentative
587 // If lookahead indicates this is a lambda...
598 // If lookahead indicates an ObjC message send...
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 317 /// lookahead. They are "lexed" by the CachingLex() method.
637 /// LookAhead - This peeks ahead N tokens and returns that token without
638 /// consuming any tokens. LookAhead(0) returns the next token that would be
639 /// returned by Lex(), LookAhead(1) returns the token after it, etc. This
642 const Token &LookAhead(unsigned N) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 859 unsigned LookAhead = std::min((unsigned)Sequence.size(),
861 if (LookAhead == 0)
864 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]
  /external/clang/include/clang/Parse/
Parser.h 420 /// without consuming any tokens. LookAhead(0) returns 'Tok', LookAhead(1)
423 /// Note that this differs from the Preprocessor's LookAhead method, because
428 return PP.LookAhead(N-1);
434 return PP.LookAhead(0);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]

Completed in 538 milliseconds