Searched defs:IdName (Results 1 - 25 of 25) sorted by relevance

/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp227 std::string IdName = IdentifierStr; local
232 return helper::make_unique<VariableExprAST>(IdName);
256 return helper::make_unique<CallExprAST>(IdName, std::move(Args));
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp237 std::string IdName = IdentifierStr; local
242 return llvm::make_unique<VariableExprAST>(IdName);
266 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp176 std::string IdName = IdentifierStr; local
181 return new VariableExprAST(IdName);
203 return new CallExprAST(IdName, Args);
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp246 std::string IdName = IdentifierStr; local
251 return llvm::make_unique<VariableExprAST>(IdName);
275 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp188 std::string IdName = IdentifierStr; local
193 return new VariableExprAST(IdName);
215 return new CallExprAST(IdName, Args);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp195 std::string IdName = IdentifierStr; local
200 return new VariableExprAST(IdName);
222 return new CallExprAST(IdName, Args);
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/
H A Dtoy.cpp342 std::string IdName = IdentifierStr; local
347 return llvm::make_unique<VariableExprAST>(IdName);
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
411 std::string IdName = IdentifierStr;
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
H A Dtoy.cpp342 std::string IdName = IdentifierStr; local
347 return llvm::make_unique<VariableExprAST>(IdName);
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
411 std::string IdName = IdentifierStr;
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
H A Dtoy.cpp342 std::string IdName = IdentifierStr; local
347 return llvm::make_unique<VariableExprAST>(IdName);
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
411 std::string IdName = IdentifierStr;
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
H A Dtoy.cpp330 std::string IdName = IdentifierStr; local
335 return llvm::make_unique<VariableExprAST>(IdName);
359 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
399 std::string IdName = IdentifierStr;
434 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
H A Dtoy.cpp345 std::string IdName = IdentifierStr; local
350 return llvm::make_unique<VariableExprAST>(IdName);
374 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
414 std::string IdName = IdentifierStr;
449 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp289 std::string IdName = IdentifierStr; local
294 return llvm::make_unique<VariableExprAST>(IdName);
318 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
358 std::string IdName = IdentifierStr;
393 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp322 std::string IdName = IdentifierStr; local
327 return llvm::make_unique<VariableExprAST>(IdName);
351 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
391 std::string IdName = IdentifierStr;
426 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp342 std::string IdName = IdentifierStr; local
347 return llvm::make_unique<VariableExprAST>(IdName);
371 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
411 std::string IdName = IdentifierStr;
446 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp339 std::string IdName = IdentifierStr; local
344 return llvm::make_unique<VariableExprAST>(IdName);
368 return llvm::make_unique<CallExprAST>(IdName, std::move(Args));
408 std::string IdName = IdentifierStr;
443 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp224 std::string IdName = IdentifierStr; local
229 return new VariableExprAST(IdName);
251 return new CallExprAST(IdName, Args);
306 std::string IdName = IdentifierStr;
338 return new ForExprAST(IdName, Start, End, Step, Body);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp252 std::string IdName = IdentifierStr; local
257 return new VariableExprAST(IdName);
279 return new CallExprAST(IdName, Args);
334 std::string IdName = IdentifierStr;
366 return new ForExprAST(IdName, Start, End, Step, Body);
/external/llvm/examples/Kaleidoscope/Chapter9/
H A Dtoy.cpp467 std::string IdName = IdentifierStr; local
474 return llvm::make_unique<VariableExprAST>(LitLoc, IdName);
498 return llvm::make_unique<CallExprAST>(LitLoc, IdName, std::move(Args));
540 std::string IdName = IdentifierStr;
575 return llvm::make_unique<ForExprAST>(IdName, std::move(Start), std::move(End),
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp288 std::string IdName = IdentifierStr; local
293 return new VariableExprAST(IdName);
315 return new CallExprAST(IdName, Args);
370 std::string IdName = IdentifierStr;
402 return new ForExprAST(IdName, Start, End, Step, Body);
H A Dtoy.cpp295 std::string IdName = IdentifierStr; local
300 return new VariableExprAST(IdName);
322 return new CallExprAST(IdName, Args);
377 std::string IdName = IdentifierStr;
409 return new ForExprAST(IdName, Start, End, Step, Body);
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp314 std::string IdName = IdentifierStr; local
319 return new VariableExprAST(IdName);
341 return new CallExprAST(IdName, Args);
396 std::string IdName = IdentifierStr;
428 return new ForExprAST(IdName, Start, End, Step, Body);
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp272 std::string IdName = IdentifierStr; local
277 return new VariableExprAST(IdName);
299 return new CallExprAST(IdName, Args);
354 std::string IdName = IdentifierStr;
386 return new ForExprAST(IdName, Start, End, Step, Body);
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp273 std::string IdName = IdentifierStr; local
278 return new VariableExprAST(IdName);
300 return new CallExprAST(IdName, Args);
355 std::string IdName = IdentifierStr;
387 return new ForExprAST(IdName, Start, End, Step, Body);
H A Dtoy.cpp274 std::string IdName = IdentifierStr; local
279 return new VariableExprAST(IdName);
301 return new CallExprAST(IdName, Args);
356 std::string IdName = IdentifierStr;
388 return new ForExprAST(IdName, Start, End, Step, Body);
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp270 std::string IdName = IdentifierStr; local
275 return new VariableExprAST(IdName);
297 return new CallExprAST(IdName, Args);
352 std::string IdName = IdentifierStr;
384 return new ForExprAST(IdName, Start, End, Step, Body);

Completed in 307 milliseconds