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

  /external/clang/include/clang/Lex/
Preprocessor.h 299 /// lookahead. They are "lexed" by the CachingLex() method.
622 /// LookAhead - This peeks ahead N tokens and returns that token without
623 /// consuming any tokens. LookAhead(0) returns the next token that would be
624 /// returned by Lex(), LookAhead(1) returns the token after it, etc. This
627 const Token &LookAhead(unsigned N) {
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 725 unsigned LookAhead = std::min((unsigned)Sequence.size(),
727 if (LookAhead == 0)
730 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]

Completed in 2029 milliseconds