Searched refs:tok_identifier (Results 1 - 18 of 18) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp34 tok_identifier = -4, enumerator in enum:Token
38 static std::string IdentifierStr; // Filled in if tok_identifier
58 return tok_identifier;
266 case tok_identifier:
326 if (CurTok != tok_identifier)
336 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp28 tok_identifier = -4, enumerator in enum:Token
32 static std::string IdentifierStr; // Filled in if tok_identifier
52 return tok_identifier;
269 case tok_identifier:
329 if (CurTok != tok_identifier)
339 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp34 tok_identifier = -4, enumerator in enum:Token
38 static std::string IdentifierStr; // Filled in if tok_identifier
58 return tok_identifier;
275 case tok_identifier:
335 if (CurTok != tok_identifier)
345 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp34 tok_identifier = -4, enumerator in enum:Token
45 static std::string IdentifierStr; // Filled in if tok_identifier
75 return tok_identifier;
343 if (CurTok != tok_identifier)
395 case tok_identifier:
459 if (CurTok != tok_identifier)
469 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp34 tok_identifier = -4, enumerator in enum:Token
52 static std::string IdentifierStr; // Filled in if tok_identifier
88 return tok_identifier;
395 if (CurTok != tok_identifier)
445 if (CurTok != tok_identifier)
469 if (CurTok != tok_identifier)
496 case tok_identifier:
588 case tok_identifier:
625 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp50 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)
H A Dtoy.cpp57 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)
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp34 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)
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp35 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)
H A Dtoy.cpp36 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)
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp36 tok_identifier = -4, enumerator in enum:Token
62 case tok_identifier:
118 static std::string IdentifierStr; // Filled in if tok_identifier
156 return tok_identifier;
536 if (CurTok != tok_identifier)
586 if (CurTok != tok_identifier)
610 if (CurTok != tok_identifier)
637 case tok_identifier:
732 case tok_identifier:
769 while (getNextToken() == tok_identifier)
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp76 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)
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp41 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)
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)
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp40 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)
429 if (CurTok != tok_identifier)
452 if (CurTok != tok_identifier)
478 case tok_identifier: return ParseIdentifierExpr();
563 case tok_identifier:
600 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp40 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)
429 if (CurTok != tok_identifier)
452 if (CurTok != tok_identifier)
478 case tok_identifier: return ParseIdentifierExpr();
563 case tok_identifier:
600 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp40 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)
429 if (CurTok != tok_identifier)
452 if (CurTok != tok_identifier)
478 case tok_identifier: return ParseIdentifierExpr();
563 case tok_identifier:
600 while (getNextToken() == tok_identifier)
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp34 tok_identifier = -4, enumerator in enum:Token
49 static std::string IdentifierStr; // Filled in if tok_identifier
83 return tok_identifier;
376 if (CurTok != tok_identifier)
428 case tok_identifier:
518 case tok_identifier:
555 while (getNextToken() == tok_identifier)
/external/valgrind/perf/
H A Dtinycc.c12795 goto tok_identifier;
12971 goto tok_identifier;
12993 tok_identifier:

Completed in 258 milliseconds