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

/external/llvm/lib/MC/MCParser/
H A DAsmLexer.cpp221 const char *LookAhead = CurPtr; local
223 if (isdigit(*LookAhead)) {
224 ++LookAhead;
225 } else if (isxdigit(*LookAhead)) {
227 FirstHex = LookAhead;
228 ++LookAhead;
233 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
234 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp886 unsigned LookAhead = std::min((unsigned)Sequence.size(), local
888 if (LookAhead == 0)
891 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
/external/clang/include/clang/Lex/
H A DPreprocessor.h873 /// LookAhead(0) returns the next token that would be returned by Lex(),
874 /// LookAhead(1) returns the token after it, etc. This returns normal
877 const Token &LookAhead(unsigned N) { function in class:clang::Preprocessor

Completed in 181 milliseconds