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

12

/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
/external/v8/src/compiler/
H A Dcontrol-builders.cc18 void IfBuilder::Then() { builder_->NewIfTrue(); } function in class:v8::internal::compiler::IfBuilder
69 control_if.Then();
79 control_if.Then();
149 control_if.Then();
159 control_if.Then();
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp164 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11462::IfExprAST
167 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
322 auto Then = ParseExpression(); local
323 if (!Then)
335 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
618 Value *ThenV = Then->codegen();
623 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp183 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11463::IfExprAST
186 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
355 auto Then = ParseExpression(); local
356 if (!Then)
368 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
729 Value *ThenV = Then->codegen();
734 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp189 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11464::IfExprAST
192 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
374 auto Then = ParseExpression(); local
375 if (!Then)
387 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
834 Value *ThenV = Then->codegen();
839 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h3015 const Stmt *const Then = Node.getThen(); local
3016 return (Then != nullptr && InnerMatcher.matches(*Then, Finder, Builder));
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp650 static void CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then, argument
657 Then->getLocStart()));
659 SourceLocation ElseKwLoc = S.getLocForEndOfToken(Then->getLocEnd());
H A DTreeTransform.h1165 VarDecl *CondVar, Stmt *Then,
1167 return getSema().ActOnIfStmt(IfLoc, Cond, CondVar, Then, ElseLoc, Else);
6138 StmtResult Then = getDerived().TransformStmt(S->getThen());
6139 if (Then.isInvalid())
6150 Then.get() == S->getThen() &&
6155 Then.get(),
1164 RebuildIfStmt(SourceLocation IfLoc, Sema::FullExprArg Cond, VarDecl *CondVar, Stmt *Then, SourceLocation ElseLoc, Stmt *Else) argument
/external/llvm/examples/Kaleidoscope/Chapter8/
H A Dtoy.cpp294 std::unique_ptr<ExprAST> Cond, Then, Else; member in class:__anon11466::IfExprAST
298 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
299 : ExprAST(Loc), Cond(std::move(Cond)), Then(std::move(Then)),
305 Then->dump(indent(out, ind) << "Then:", ind + 1);
515 auto Then = ParseExpression(); local
516 if (!Then)
528 return llvm::make_unique<IfExprAST>(IfLoc, std::move(Cond), std::move(Then),
1025 Value *ThenV = Then
297 IfExprAST(SourceLocation Loc, std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else) argument
[all...]
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp182 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
185 : Cond(cond), Then(then), Else(_else) {}
349 ExprAST *Then = ParseExpression(); local
350 if (Then == 0) return 0;
360 return new IfExprAST(Cond, Then, Else);
760 Value *ThenV = Then->Codegen();
764 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
H A Dtoy.cpp189 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
192 : Cond(cond), Then(then), Else(_else) {}
356 ExprAST *Then = ParseExpression(); local
357 if (Then == 0) return 0;
367 return new IfExprAST(Cond, Then, Else);
1124 Value *ThenV = Then->Codegen();
1128 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp208 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
211 : Cond(cond), Then(then), Else(_else) {}
375 ExprAST *Then = ParseExpression(); local
376 if (Then == 0) return 0;
386 return new IfExprAST(Cond, Then, Else);
1202 Value *ThenV = Then->Codegen();
1206 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp166 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
169 : Cond(cond), Then(then), Else(_else) {}
333 ExprAST *Then = ParseExpression(); local
334 if (Then == 0) return 0;
344 return new IfExprAST(Cond, Then, Else);
982 Value *ThenV = Then->Codegen();
986 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp167 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
170 : Cond(cond), Then(then), Else(_else) {}
334 ExprAST *Then = ParseExpression(); local
335 if (Then == 0) return 0;
345 return new IfExprAST(Cond, Then, Else);
742 Value *ThenV = Then->Codegen();
746 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
H A Dtoy.cpp168 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
171 : Cond(cond), Then(then), Else(_else) {}
335 ExprAST *Then = ParseExpression(); local
336 if (Then == 0) return 0;
346 return new IfExprAST(Cond, Then, Else);
1022 Value *ThenV = Then->Codegen();
1026 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
H A Dtoy.cpp178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
180 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
183 std::unique_ptr<ExprAST> Cond, Then, Else; member in struct:IfExprAST
359 auto Then = ParseExpression(); local
360 if (!Then)
372 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
867 Value *ThenV = Then->IRGen(C);
871 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Orc/initial/
H A Dtoy.cpp177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
182 std::unique_ptr<ExprAST> Cond, Then, Else; member in struct:IfExprAST
358 auto Then = ParseExpression(); local
359 if (!Then)
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
866 Value *ThenV = Then->IRGen(C);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
H A Dtoy.cpp177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
182 std::unique_ptr<ExprAST> Cond, Then, Else; member in struct:IfExprAST
358 auto Then = ParseExpression(); local
359 if (!Then)
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
866 Value *ThenV = Then->IRGen(C);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
H A Dtoy.cpp177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, argument
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
182 std::unique_ptr<ExprAST> Cond, Then, Else; member in struct:IfExprAST
358 auto Then = ParseExpression(); local
359 if (!Then)
371 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then),
866 Value *ThenV = Then->IRGen(C);
870 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/clang/lib/Analysis/
H A DCFG.cpp2215 Stmt *Then = I->getThen(); local
2216 assert(Then);
2222 if (!isa<CompoundStmt>(Then))
2223 addLocalScopeAndDtors(Then);
2225 ThenBlock = addStmt(Then);
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1680 LLVMBasicBlockRef Then,
1683 return LLVMBuildCondBr(Builder_val(B), If, Then, Else);
1739 LLVMBasicBlockRef Then,
1743 Wosize_val(Args), Then, Catch, String_val(Name));
2223 LLVMValueRef Then, LLVMValueRef Else,
2225 return LLVMBuildSelect(Builder_val(B), If, Then, Else, String_val(Name));
1679 llvm_build_cond_br(LLVMValueRef If, LLVMBasicBlockRef Then, LLVMBasicBlockRef Else, value B) argument
1738 llvm_build_invoke_nat(LLVMValueRef Fn, value Args, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, value Name, value B) argument
2222 llvm_build_select(LLVMValueRef If, LLVMValueRef Then, LLVMValueRef Else, value Name, value B) argument
/external/llvm/lib/IR/
H A DCore.cpp2242 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) {
2243 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else)));
2258 LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch,
2260 return wrap(unwrap(B)->CreateInvoke(unwrap(Fn), unwrap(Then), unwrap(Catch),
2747 LLVMValueRef Then, LLVMValueRef Else,
2749 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else),
2241 LLVMBuildCondBr(LLVMBuilderRef B, LLVMValueRef If, LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) argument
2256 LLVMBuildInvoke(LLVMBuilderRef B, LLVMValueRef Fn, LLVMValueRef *Args, unsigned NumArgs, LLVMBasicBlockRef Then, LLVMBasicBlockRef Catch, const char *Name) argument
2746 LLVMBuildSelect(LLVMBuilderRef B, LLVMValueRef If, LLVMValueRef Then, LLVMValueRef Else, const char *Name) argument
/external/v8/src/
H A Dapi.cc6475 MaybeLocal<Promise> Promise::Then(Local<Context> context, function in class:v8::Promise
6477 PREPARE_FOR_EXECUTION(context, "Promise::Then", Promise);
6489 Local<Promise> Promise::Then(Local<Function> handler) { function in class:v8::Promise
6491 RETURN_TO_LOCAL_UNCHECKED(Then(context, handler), Promise);

Completed in 726 milliseconds

12