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

  /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/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/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...]

Completed in 85 milliseconds