Searched defs:LookAhead (Results 1 - 2 of 2) sorted by relevance

/external/clang/include/clang/Lex/
H A DPreprocessor.h671 /// LookAhead - This peeks ahead N tokens and returns that token without
672 /// consuming any tokens. LookAhead(0) returns the next token that would be
673 /// returned by Lex(), LookAhead(1) returns the token after it, etc. This
676 const Token &LookAhead(unsigned N) { function in class:clang::Preprocessor
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp862 unsigned LookAhead = std::min((unsigned)Sequence.size(), local
864 if (LookAhead == 0)
867 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);

Completed in 117 milliseconds