/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 163 class IfExprAST : public ExprAST { class 167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anone5e5f5430111::IfExprAST 334 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 570 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 182 class IfExprAST : public ExprAST { class 186 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anon5a6266440111::IfExprAST 365 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 678 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 166 class IfExprAST : public ExprAST { class 169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 345 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 720 Value *IfExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 167 class IfExprAST : public ExprAST { class 170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 346 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 1000 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 188 class IfExprAST : public ExprAST { class 192 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anonceded7450111::IfExprAST 385 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 783 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 181 class IfExprAST : public ExprAST { class 184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 360 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 738 Value *IfExprAST::Codegen() { in Codegen()
|
D | toy.cpp | 188 class IfExprAST : public ExprAST { class 191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 367 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 1102 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 165 class IfExprAST : public ExprAST { class 168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 344 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 960 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 296 class IfExprAST : public ExprAST { class 300 IfExprAST(SourceLocation Loc, ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in __anon435b48460211::IfExprAST 531 return new IfExprAST(IfLoc, Cond, Then, Else); in ParseIfExpr() 980 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 176 struct IfExprAST : public ExprAST { struct 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 207 class IfExprAST : public ExprAST { class 210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) in IfExprAST() function in IfExprAST 386 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 1180 Value *IfExprAST::Codegen() { in Codegen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 176 struct IfExprAST : public ExprAST { struct 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() function 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 176 struct IfExprAST : public ExprAST { struct 177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 845 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 177 struct IfExprAST : public ExprAST { struct 178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 846 Value *IfExprAST::IRGen(IRGenContext &C) const { in IRGen()
|
/external/llvm/docs/tutorial/ |
D | LangImpl5.rst | 91 /// IfExprAST - Expression class for if/then/else. 92 class IfExprAST : public ExprAST { 95 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else) 134 return new IfExprAST(Cond, Then, Else); 266 for ``IfExprAST``: 270 Value *IfExprAST::Codegen() {
|
D | OCamlLangImpl5.rst | 246 for ``IfExprAST``:
|