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

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp24 static std::string IdentifierStr; // Filled in if tok_identifier variable
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/Chapter3/
H A Dtoy.cpp29 static std::string IdentifierStr; // Filled in if tok_identifier variable
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/Chapter4/
H A Dtoy.cpp36 static std::string IdentifierStr; // Filled in if tok_identifier variable
48 IdentifierStr = LastChar;
50 IdentifierStr += LastChar;
52 if (IdentifierStr == "def") return tok_def;
53 if (IdentifierStr == "extern") return tok_extern;
197 std::string IdName = IdentifierStr;
308 std::string FnName = IdentifierStr;
316 ArgNames.push_back(IdentifierStr);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp40 static std::string IdentifierStr; // Filled in if tok_identifier variable
52 IdentifierStr = LastChar;
54 IdentifierStr += LastChar;
56 if (IdentifierStr == "def") return tok_def;
57 if (IdentifierStr == "extern") return tok_extern;
58 if (IdentifierStr == "if") return tok_if;
59 if (IdentifierStr == "then") return tok_then;
60 if (IdentifierStr == "else") return tok_else;
61 if (IdentifierStr == "for") return tok_for;
62 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp43 static std::string IdentifierStr; // Filled in if tok_identifier variable
55 IdentifierStr = LastChar;
57 IdentifierStr += LastChar;
59 if (IdentifierStr == "def") return tok_def;
60 if (IdentifierStr == "extern") return tok_extern;
61 if (IdentifierStr == "if") return tok_if;
62 if (IdentifierStr == "then") return tok_then;
63 if (IdentifierStr == "else") return tok_else;
64 if (IdentifierStr == "for") return tok_for;
65 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp46 static std::string IdentifierStr; // Filled in if tok_identifier variable
58 IdentifierStr = LastChar;
60 IdentifierStr += LastChar;
62 if (IdentifierStr == "def") return tok_def;
63 if (IdentifierStr == "extern") return tok_extern;
64 if (IdentifierStr == "if") return tok_if;
65 if (IdentifierStr == "then") return tok_then;
66 if (IdentifierStr == "else") return tok_else;
67 if (IdentifierStr == "for") return tok_for;
68 if (IdentifierStr
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp64 static std::string IdentifierStr; // Filled in if tok_identifier variable
76 IdentifierStr = LastChar;
78 IdentifierStr += LastChar;
80 if (IdentifierStr == "def") return tok_def;
81 if (IdentifierStr == "extern") return tok_extern;
82 if (IdentifierStr == "if") return tok_if;
83 if (IdentifierStr == "then") return tok_then;
84 if (IdentifierStr == "else") return tok_else;
85 if (IdentifierStr == "for") return tok_for;
86 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.cpp94 static std::string IdentifierStr; // Filled in if tok_identifier variable
106 IdentifierStr = LastChar;
108 IdentifierStr += LastChar;
110 if (IdentifierStr == "def") return tok_def;
111 if (IdentifierStr == "extern") return tok_extern;
112 if (IdentifierStr == "if") return tok_if;
113 if (IdentifierStr == "then") return tok_then;
114 if (IdentifierStr == "else") return tok_else;
115 if (IdentifierStr == "for") return tok_for;
116 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.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...]
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...]

Completed in 128 milliseconds