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

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 21 tok_identifier = -4, tok_number = -5 enumerator in enum:Token
24 static std::string IdentifierStr; // Filled in if tok_identifier
42 return tok_identifier;
225 case tok_identifier: return ParseIdentifierExpr();
277 if (CurTok != tok_identifier)
287 while (getNextToken() == tok_identifier)
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 26 tok_identifier = -4, tok_number = -5 enumerator in enum:Token
29 static std::string IdentifierStr; // Filled in if tok_identifier
47 return tok_identifier;
246 case tok_identifier: return ParseIdentifierExpr();
298 if (CurTok != tok_identifier)
308 while (getNextToken() == tok_identifier)
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 36 tok_identifier = -4, enumerator in enum:Token
47 static std::string IdentifierStr; // Filled in if tok_identifier
77 return tok_identifier;
341 if (CurTok != tok_identifier)
392 case tok_identifier:
454 if (CurTok != tok_identifier)
464 while (getNextToken() == tok_identifier)
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 36 tok_identifier = -4, enumerator in enum:Token
51 static std::string IdentifierStr; // Filled in if tok_identifier
85 return tok_identifier;
372 if (CurTok != tok_identifier)
423 case tok_identifier:
511 case tok_identifier:
548 while (getNextToken() == tok_identifier)
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 40 tok_identifier = -4, enumerator in enum:Token
66 case tok_identifier:
105 static std::string IdentifierStr; // Filled in if tok_identifier
160 return tok_identifier;
538 if (CurTok != tok_identifier)
587 if (CurTok != tok_identifier)
611 if (CurTok != tok_identifier)
638 case tok_identifier:
731 case tok_identifier:
768 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 36 tok_identifier = -4, enumerator in enum:Token
54 static std::string IdentifierStr; // Filled in if tok_identifier
90 return tok_identifier;
392 if (CurTok != tok_identifier)
441 if (CurTok != tok_identifier)
465 if (CurTok != tok_identifier)
492 case tok_identifier:
582 case tok_identifier:
619 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 50 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
63 static std::string IdentifierStr; // Filled in if tok_identifier
89 return tok_identifier;
367 if (CurTok != tok_identifier)
413 if (CurTok != tok_identifier)
435 if (CurTok != tok_identifier)
460 case tok_identifier: return ParseIdentifierExpr();
541 case tok_identifier:
578 while (getNextToken() == tok_identifier)
    [all...]
toy.cpp 57 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
70 static std::string IdentifierStr; // Filled in if tok_identifier
96 return tok_identifier;
374 if (CurTok != tok_identifier)
420 if (CurTok != tok_identifier)
442 if (CurTok != tok_identifier)
467 case tok_identifier: return ParseIdentifierExpr();
548 case tok_identifier:
585 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 34 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
47 static std::string IdentifierStr; // Filled in if tok_identifier
73 return tok_identifier;
351 if (CurTok != tok_identifier)
397 if (CurTok != tok_identifier)
419 if (CurTok != tok_identifier)
444 case tok_identifier: return ParseIdentifierExpr();
525 case tok_identifier:
562 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 35 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
48 static std::string IdentifierStr; // Filled in if tok_identifier
74 return tok_identifier;
352 if (CurTok != tok_identifier)
398 if (CurTok != tok_identifier)
420 if (CurTok != tok_identifier)
445 case tok_identifier: return ParseIdentifierExpr();
526 case tok_identifier:
563 while (getNextToken() == tok_identifier)
    [all...]
toy.cpp 36 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
49 static std::string IdentifierStr; // Filled in if tok_identifier
75 return tok_identifier;
353 if (CurTok != tok_identifier)
399 if (CurTok != tok_identifier)
421 if (CurTok != tok_identifier)
446 case tok_identifier: return ParseIdentifierExpr();
527 case tok_identifier:
564 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 35 tok_identifier = -4, enumerator in enum:Token
39 static std::string IdentifierStr; // Filled in if tok_identifier
59 return tok_identifier;
276 case tok_identifier:
334 if (CurTok != tok_identifier)
344 while (getNextToken() == tok_identifier)
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 76 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
89 static std::string IdentifierStr; // Filled in if tok_identifier
115 return tok_identifier;
393 if (CurTok != tok_identifier)
439 if (CurTok != tok_identifier)
461 if (CurTok != tok_identifier)
486 case tok_identifier: return ParseIdentifierExpr();
567 case tok_identifier:
604 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 41 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
54 static std::string IdentifierStr; // Filled in if tok_identifier
80 return tok_identifier;
380 if (CurTok != tok_identifier)
431 if (CurTok != tok_identifier)
454 if (CurTok != tok_identifier)
480 case tok_identifier: return ParseIdentifierExpr();
565 case tok_identifier:
602 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 40 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
53 static std::string IdentifierStr; // Filled in if tok_identifier
79 return tok_identifier;
379 if (CurTok != tok_identifier)
430 if (CurTok != tok_identifier)
453 if (CurTok != tok_identifier)
479 case tok_identifier: return ParseIdentifierExpr();
564 case tok_identifier:
601 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 40 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
53 static std::string IdentifierStr; // Filled in if tok_identifier
79 return tok_identifier;
379 if (CurTok != tok_identifier)
430 if (CurTok != tok_identifier)
453 if (CurTok != tok_identifier)
479 case tok_identifier: return ParseIdentifierExpr();
564 case tok_identifier:
601 while (getNextToken() == tok_identifier)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 40 tok_identifier = -4, tok_number = -5, enumerator in enum:Token
53 static std::string IdentifierStr; // Filled in if tok_identifier
79 return tok_identifier;
379 if (CurTok != tok_identifier)
430 if (CurTok != tok_identifier)
453 if (CurTok != tok_identifier)
479 case tok_identifier: return ParseIdentifierExpr();
564 case tok_identifier:
601 while (getNextToken() == tok_identifier)
    [all...]
  /external/valgrind/perf/
tinycc.c     [all...]

Completed in 146 milliseconds