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

  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 24 static std::string IdentifierStr; // Filled in if tok_identifier
36 IdentifierStr = LastChar;
38 IdentifierStr += LastChar;
40 if (IdentifierStr == "def") return tok_def;
41 if (IdentifierStr == "extern") return tok_extern;
169 std::string IdName = IdentifierStr;
280 std::string FnName = IdentifierStr;
288 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 51 static std::string IdentifierStr; // Filled in if tok_identifier
63 IdentifierStr = LastChar;
65 IdentifierStr += LastChar;
67 if (IdentifierStr == "def")
69 if (IdentifierStr == "extern")
71 if (IdentifierStr == "if")
73 if (IdentifierStr == "then")
75 if (IdentifierStr == "else")
77 if (IdentifierStr == "for")
79 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 29 static std::string IdentifierStr; // Filled in if tok_identifier
41 IdentifierStr = LastChar;
43 IdentifierStr += LastChar;
45 if (IdentifierStr == "def") return tok_def;
46 if (IdentifierStr == "extern") return tok_extern;
190 std::string IdName = IdentifierStr;
301 std::string FnName = IdentifierStr;
309 ArgNames.push_back(IdentifierStr);
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 47 static std::string IdentifierStr; // Filled in if tok_identifier
59 IdentifierStr = LastChar;
61 IdentifierStr += LastChar;
63 if (IdentifierStr == "def")
65 if (IdentifierStr == "extern")
67 if (IdentifierStr == "if")
69 if (IdentifierStr == "then")
71 if (IdentifierStr == "else")
73 if (IdentifierStr == "for")
75 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 54 static std::string IdentifierStr; // Filled in if tok_identifier
66 IdentifierStr = LastChar;
68 IdentifierStr += LastChar;
70 if (IdentifierStr == "def")
72 if (IdentifierStr == "extern")
74 if (IdentifierStr == "if")
76 if (IdentifierStr == "then")
78 if (IdentifierStr == "else")
80 if (IdentifierStr == "for")
82 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 105 static std::string IdentifierStr; // Filled in if tok_identifier
136 IdentifierStr = LastChar;
138 IdentifierStr += LastChar;
140 if (IdentifierStr == "def")
142 if (IdentifierStr == "extern")
144 if (IdentifierStr == "if")
146 if (IdentifierStr == "then")
148 if (IdentifierStr == "else")
150 if (IdentifierStr == "for")
152 if (IdentifierStr == "in"
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 63 static std::string IdentifierStr; // Filled in if tok_identifier
75 IdentifierStr = LastChar;
77 IdentifierStr += LastChar;
79 if (IdentifierStr == "def") return tok_def;
80 if (IdentifierStr == "extern") return tok_extern;
81 if (IdentifierStr == "if") return tok_if;
82 if (IdentifierStr == "then") return tok_then;
83 if (IdentifierStr == "else") return tok_else;
84 if (IdentifierStr == "for") return tok_for;
85 if (IdentifierStr == "in") return tok_in
    [all...]
toy.cpp 70 static std::string IdentifierStr; // Filled in if tok_identifier
82 IdentifierStr = LastChar;
84 IdentifierStr += LastChar;
86 if (IdentifierStr == "def") return tok_def;
87 if (IdentifierStr == "extern") return tok_extern;
88 if (IdentifierStr == "if") return tok_if;
89 if (IdentifierStr == "then") return tok_then;
90 if (IdentifierStr == "else") return tok_else;
91 if (IdentifierStr == "for") return tok_for;
92 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 47 static std::string IdentifierStr; // Filled in if tok_identifier
59 IdentifierStr = LastChar;
61 IdentifierStr += LastChar;
63 if (IdentifierStr == "def") return tok_def;
64 if (IdentifierStr == "extern") return tok_extern;
65 if (IdentifierStr == "if") return tok_if;
66 if (IdentifierStr == "then") return tok_then;
67 if (IdentifierStr == "else") return tok_else;
68 if (IdentifierStr == "for") return tok_for;
69 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 48 static std::string IdentifierStr; // Filled in if tok_identifier
60 IdentifierStr = LastChar;
62 IdentifierStr += LastChar;
64 if (IdentifierStr == "def") return tok_def;
65 if (IdentifierStr == "extern") return tok_extern;
66 if (IdentifierStr == "if") return tok_if;
67 if (IdentifierStr == "then") return tok_then;
68 if (IdentifierStr == "else") return tok_else;
69 if (IdentifierStr == "for") return tok_for;
70 if (IdentifierStr == "in") return tok_in
    [all...]
toy.cpp 49 static std::string IdentifierStr; // Filled in if tok_identifier
61 IdentifierStr = LastChar;
63 IdentifierStr += LastChar;
65 if (IdentifierStr == "def") return tok_def;
66 if (IdentifierStr == "extern") return tok_extern;
67 if (IdentifierStr == "if") return tok_if;
68 if (IdentifierStr == "then") return tok_then;
69 if (IdentifierStr == "else") return tok_else;
70 if (IdentifierStr == "for") return tok_for;
71 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 89 static std::string IdentifierStr; // Filled in if tok_identifier
101 IdentifierStr = LastChar;
103 IdentifierStr += LastChar;
105 if (IdentifierStr == "def") return tok_def;
106 if (IdentifierStr == "extern") return tok_extern;
107 if (IdentifierStr == "if") return tok_if;
108 if (IdentifierStr == "then") return tok_then;
109 if (IdentifierStr == "else") return tok_else;
110 if (IdentifierStr == "for") return tok_for;
111 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 54 static std::string IdentifierStr; // Filled in if tok_identifier
66 IdentifierStr = LastChar;
68 IdentifierStr += LastChar;
70 if (IdentifierStr == "def") return tok_def;
71 if (IdentifierStr == "extern") return tok_extern;
72 if (IdentifierStr == "if") return tok_if;
73 if (IdentifierStr == "then") return tok_then;
74 if (IdentifierStr == "else") return tok_else;
75 if (IdentifierStr == "for") return tok_for;
76 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 53 static std::string IdentifierStr; // Filled in if tok_identifier
65 IdentifierStr = LastChar;
67 IdentifierStr += LastChar;
69 if (IdentifierStr == "def") return tok_def;
70 if (IdentifierStr == "extern") return tok_extern;
71 if (IdentifierStr == "if") return tok_if;
72 if (IdentifierStr == "then") return tok_then;
73 if (IdentifierStr == "else") return tok_else;
74 if (IdentifierStr == "for") return tok_for;
75 if (IdentifierStr == "in") return tok_in
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 39 static std::string IdentifierStr; // Filled in if tok_identifier
51 IdentifierStr = LastChar;
53 IdentifierStr += LastChar;
55 if (IdentifierStr == "def")
57 if (IdentifierStr == "extern")
216 std::string IdName = IdentifierStr;
337 std::string FnName = IdentifierStr;
345 ArgNames.push_back(IdentifierStr);

Completed in 55 milliseconds