Searched defs:IdentifierStr (Results 1 - 17 of 17) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp38 static std::string IdentifierStr; // Filled in if tok_identifier variable
50 IdentifierStr = LastChar;
52 IdentifierStr += LastChar;
54 if (IdentifierStr == "def")
56 if (IdentifierStr == "extern")
226 std::string IdName = IdentifierStr;
329 std::string FnName = IdentifierStr;
337 ArgNames.push_back(IdentifierStr);
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp32 static std::string IdentifierStr; // Filled in if tok_identifier variable
44 IdentifierStr = LastChar;
46 IdentifierStr += LastChar;
48 if (IdentifierStr == "def")
50 if (IdentifierStr == "extern")
229 std::string IdName = IdentifierStr;
332 std::string FnName = IdentifierStr;
340 ArgNames.push_back(IdentifierStr);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp38 static std::string IdentifierStr; // Filled in if tok_identifier variable
50 IdentifierStr = LastChar;
52 IdentifierStr += LastChar;
54 if (IdentifierStr == "def")
56 if (IdentifierStr == "extern")
235 std::string IdName = IdentifierStr;
338 std::string FnName = IdentifierStr;
346 ArgNames.push_back(IdentifierStr);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp45 static std::string IdentifierStr; // Filled in if tok_identifier variable
57 IdentifierStr = LastChar;
59 IdentifierStr += LastChar;
61 if (IdentifierStr == "def")
63 if (IdentifierStr == "extern")
65 if (IdentifierStr == "if")
67 if (IdentifierStr == "then")
69 if (IdentifierStr == "else")
71 if (IdentifierStr == "for")
73 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp49 static std::string IdentifierStr; // Filled in if tok_identifier variable
61 IdentifierStr = LastChar;
63 IdentifierStr += LastChar;
65 if (IdentifierStr == "def")
67 if (IdentifierStr == "extern")
69 if (IdentifierStr == "if")
71 if (IdentifierStr == "then")
73 if (IdentifierStr == "else")
75 if (IdentifierStr == "for")
77 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp52 static std::string IdentifierStr; // Filled in if tok_identifier variable
64 IdentifierStr = LastChar;
66 IdentifierStr += LastChar;
68 if (IdentifierStr == "def")
70 if (IdentifierStr == "extern")
72 if (IdentifierStr == "if")
74 if (IdentifierStr == "then")
76 if (IdentifierStr == "else")
78 if (IdentifierStr == "for")
80 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp118 static std::string IdentifierStr; // Filled in if tok_identifier variable
132 IdentifierStr = LastChar;
134 IdentifierStr += LastChar;
136 if (IdentifierStr == "def")
138 if (IdentifierStr == "extern")
140 if (IdentifierStr == "if")
142 if (IdentifierStr == "then")
144 if (IdentifierStr == "else")
146 if (IdentifierStr == "for")
148 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp63 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
H A Dtoy.cpp70 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp89 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp47 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp48 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
H A Dtoy.cpp49 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp54 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp53 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp53 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp53 static std::string IdentifierStr; // Filled in if tok_identifier variable
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
[all...]

Completed in 178 milliseconds