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

  /external/llvm/lib/MC/MCParser/
AsmLexer.cpp 224 const char *LookAhead = CurPtr;
226 if (isdigit(*LookAhead)) {
227 ++LookAhead;
228 } else if (isxdigit(*LookAhead)) {
230 FirstHex = LookAhead;
231 ++LookAhead;
236 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
237 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/MCParser/
AsmLexer.cpp 248 const char *LookAhead = CurPtr;
250 if (isDigit(*LookAhead)) {
251 ++LookAhead;
252 } else if (isHexDigit(*LookAhead)) {
254 FirstHex = LookAhead;
255 ++LookAhead;
260 bool isHex = *LookAhead == 'h' || *LookAhead == 'H';
261 CurPtr = isHex || !FirstHex ? LookAhead : FirstHex;
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_lexer.h 137 TokKind LookAhead();
hlo_lexer.cc 87 TokKind HloLexer::LookAhead() {
hlo_parser.cc     [all...]
  /external/clang/lib/Parse/
ParseInit.cpp 42 switch (PP.LookAhead(0).getKind()) {
65 return PP.LookAhead(0).is(tok::colon);
ParseOpenMP.cpp 126 Tok = P.getPreprocessor().LookAhead(0);
838 if (PP.LookAhead(0).is(tok::l_paren)) {
    [all...]
ParseStmtAsm.cpp 236 Token IdTok = PP.LookAhead(0);
456 if (PP.LookAhead(0).is(tok::l_brace))
ParseExprCXX.cpp 441 PP.LookAhead(1).is(tok::identifier)) {
732 /// TryParseLambdaExpression - Use lookahead and potentially tentative
747 // If lookahead indicates this is a lambda...
758 // If lookahead indicates an ObjC message send...
    [all...]
  /development/vndk/tools/header-checker/src/dumper/
fake_decl_source.cpp 98 const clang::Token &next_token = ci_.getPreprocessor().LookAhead(0);
  /external/fonttools/Lib/fontTools/mtiLib/
__init__.py 551 ChainRuleData = lambda r:(r.Backtrack, r.Input, r.LookAhead)
556 (r.Backtrack, r.Input, r.LookAhead) = d
572 ChainRuleData = lambda r:(r.Backtrack, r.Input, r.LookAhead)
577 (r.Backtrack, r.Input, r.LookAhead) = d
732 'lookahead': (2,ot.LookAheadClassDef),
763 'lookahead': (2,ot.LookAheadCoverage),
796 'lookahead': (1,ot.LookAheadCoverage),
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 895 unsigned LookAhead = std::min((unsigned)Sequence.size(),
897 if (LookAhead == 0)
900 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead)
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp 725 unsigned LookAhead = std::min((unsigned)Sequence.size(),
727 if (LookAhead == 0)
730 std::vector<SUnit*>::const_iterator I = (Sequence.end() - LookAhead);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
ScheduleDAGRRList.cpp     [all...]
  /external/clang/include/clang/Parse/
Parser.h 437 /// desired, such as token caching or completion with lookahead.
543 /// without consuming any tokens. LookAhead(0) returns 'Tok', LookAhead(1)
546 /// Note that this differs from the Preprocessor's LookAhead method, because
551 return PP.LookAhead(N-1);
558 return PP.LookAhead(0);
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 618 /// lookahead. They are "lexed" by the CachingLex() method.
    [all...]
  /external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.Tree.pas     [all...]

Completed in 357 milliseconds