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

  /frameworks/compile/slang/
slang_pragma_recorder.cpp 64 const clang::Token* NextToken = &PP.LookAhead(0);
71 NextToken = &PP.LookAhead(0);
84 NextToken = &PP.LookAhead(0);
slang_rs_pragma_handler.cpp 107 const clang::Token &NextTok = PP.LookAhead(0);
  /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/
ParseInit.cpp 42 switch (PP.LookAhead(0).getKind()) {
65 return PP.LookAhead(0).is(tok::colon);
ParseOpenMP.cpp 45 Tok = P.getPreprocessor().LookAhead(0);
170 if (PP.LookAhead(0).is(tok::l_paren)) {
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...]
  /external/clang/include/clang/Parse/
Parser.h 421 /// desired, such as token caching or completion with lookahead.
523 /// without consuming any tokens. LookAhead(0) returns 'Tok', LookAhead(1)
526 /// Note that this differs from the Preprocessor's LookAhead method, because
531 return PP.LookAhead(N-1);
538 return PP.LookAhead(0);
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 434 /// 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 886 unsigned LookAhead = std::min((unsigned)Sequence.size(),
888 if (LookAhead == 0)
891 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]

Completed in 376 milliseconds