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

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 221 const char *LookAhead = CurPtr;
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/clang/lib/Parse/
ParseOpenMP.cpp 59 Tok = P.getPreprocessor().LookAhead(0);
205 if (PP.LookAhead(0).is(tok::l_paren)) {
472 if (CKind == OMPC_ordered && PP.LookAhead(/*N=*/0).isNot(tok::l_paren))
894 if (Tok.is(tok::identifier) && PP.LookAhead(0).is(tok::l_paren)) {
913 if (PP.LookAhead(0).is(tok::colon)) {
922 } else if (PP.LookAhead(0).is(tok::comma)) {
923 if (PP.LookAhead(1).is(tok::identifier) &&
924 PP.LookAhead(2).is(tok::colon)) {
    [all...]
ParseInit.cpp 42 switch (PP.LookAhead(0).getKind()) {
65 return PP.LookAhead(0).is(tok::colon);
ParseStmtAsm.cpp 238 Token IdTok = PP.LookAhead(0);
ParseExprCXX.cpp 441 PP.LookAhead(1).is(tok::identifier)) {
732 /// TryParseLambdaExpression - Use lookahead and potentially tentative
744 // If lookahead indicates this is a lambda...
755 // If lookahead indicates an ObjC message send...
    [all...]
  /frameworks/compile/slang/
slang_rs_pragma_handler.cpp 112 const clang::Token &NextTok = PP.LookAhead(0);
  /external/clang/include/clang/Parse/
Parser.h 431 /// desired, such as token caching or completion with lookahead.
533 /// without consuming any tokens. LookAhead(0) returns 'Tok', LookAhead(1)
536 /// Note that this differs from the Preprocessor's LookAhead method, because
541 return PP.LookAhead(N-1);
548 return PP.LookAhead(0);
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 611 /// lookahead. They are "lexed" by the CachingLex() method.
    [all...]
  /external/fonttools/Lib/fontTools/
subset.py 488 ChainRuleData = lambda r:(r.Backtrack, r.Input, r.LookAhead)
499 ChainRuleData = lambda r:(r.LookAhead, r.Input, r.Backtrack)
501 def ChainSetRuleData(r, d):(r.LookAhead, r.Input, r.Backtrack) = d
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 895 unsigned LookAhead = std::min((unsigned)Sequence.size(),
897 if (LookAhead == 0)
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]

Completed in 1479 milliseconds