Home
last modified time | relevance | path

Searched refs:Else (Results 1 – 25 of 42) sorted by relevance

12

/external/llvm/test/Transforms/LICM/
Dno-preheader-test.ll5 br i1 %ifcond, label %Then, label %Else
8 Else: ; preds = %0
10 Loop: ; preds = %Loop, %Else, %Then
11 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
/external/clang/include/clang/Lex/
DPPCallbacks.h223 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function
371 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function
372 First->Else(Loc, IfLoc); in Else()
373 Second->Else(Loc, IfLoc); in Else()
DPreprocessingRecord.h609 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
/external/llvm/examples/Kaleidoscope/Chapter5/
Dtoy.cpp144 ExprAST *Cond, *Then, *Else; member in IfExprAST
147 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
293 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
294 if (!Else) return 0; in ParseIfExpr()
296 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
543 Value *ElseV = Else->Codegen(); in Codegen()
/external/llvm/examples/Kaleidoscope/Chapter6/
Dtoy.cpp159 ExprAST *Cond, *Then, *Else; member in IfExprAST
162 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
321 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
322 if (!Else) return 0; in ParseIfExpr()
324 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
647 Value *ElseV = Else->Codegen(); in Codegen()
/external/qemu-pc-bios/bochs/bios/
Dacpi-dsdt.dsl336 Else
365 Else
393 Else
473 Else
520 Else
567 Else
614 Else
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dtoken.ml18 | If | Then | Else Constructor
Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
Dparser.ml52 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
Dtoken.ml18 | If | Then | Else Constructor
Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
Dparser.ml52 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
Dtoken.ml18 | If | Then | Else Constructor
Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
Dparser.ml53 'Token.Else ?? "expected 'else'"; e=parse_expr >] ->
/external/llvm/examples/Kaleidoscope/Chapter7/
Dtoy.cpp164 ExprAST *Cond, *Then, *Else; member in IfExprAST
167 : Cond(cond), Then(then), Else(_else) {} in IfExprAST()
339 ExprAST *Else = ParseExpression(); in ParseIfExpr() local
340 if (!Else) return 0; in ParseIfExpr()
342 return new IfExprAST(Cond, Then, Else); in ParseIfExpr()
743 Value *ElseV = Else->Codegen(); in Codegen()
/external/zlib/old/
Dvisual-basic.txt48 #Else
121 Else
152 Else
/external/chromium/chrome/browser/ui/cocoa/
Dconstrained_window_mac.mm108 // this case, open the sheet now. Else, Realize() will be called later, when
/external/llvm/bindings/ocaml/llvm/
Dllvm_ocaml.c1378 LLVMBasicBlockRef Else, in llvm_build_cond_br() argument
1380 return LLVMBuildCondBr(Builder_val(B), If, Then, Else); in llvm_build_cond_br()
1385 LLVMBasicBlockRef Else, in llvm_build_switch() argument
1388 return LLVMBuildSwitch(Builder_val(B), Of, Else, Int_val(EstimatedCount)); in llvm_build_switch()
1893 LLVMValueRef Then, LLVMValueRef Else, in llvm_build_select() argument
1895 return LLVMBuildSelect(Builder_val(B), If, Then, Else, String_val(Name)); in llvm_build_select()
/external/chromium/chrome/browser/ui/cocoa/bookmarks/
Dbookmark_folder_target.mm70 // Else we clicked on a different folder so more work to do.
/external/llvm/lib/VMCore/
DCore.cpp1777 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else) { in LLVMBuildCondBr() argument
1778 return wrap(unwrap(B)->CreateCondBr(unwrap(If), unwrap(Then), unwrap(Else))); in LLVMBuildCondBr()
1782 LLVMBasicBlockRef Else, unsigned NumCases) { in LLVMBuildSwitch() argument
1783 return wrap(unwrap(B)->CreateSwitch(unwrap(V), unwrap(Else), NumCases)); in LLVMBuildSwitch()
2216 LLVMValueRef Then, LLVMValueRef Else, in LLVMBuildSelect() argument
2218 return wrap(unwrap(B)->CreateSelect(unwrap(If), unwrap(Then), unwrap(Else), in LLVMBuildSelect()
/external/llvm/include/llvm-c/
DCore.h2288 LLVMBasicBlockRef Then, LLVMBasicBlockRef Else);
2290 LLVMBasicBlockRef Else, unsigned NumCases);
2458 LLVMValueRef Then, LLVMValueRef Else,
/external/clang/lib/AST/
DStmtPrinter.cpp204 if (Stmt *Else = If->getElse()) { in PrintRawIfStmt() local
207 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Else)) { in PrintRawIfStmt()
211 } else if (IfStmt *ElseIf = dyn_cast<IfStmt>(Else)) { in PrintRawIfStmt()
/external/clang/lib/Lex/
DPreprocessingRecord.cpp501 void PreprocessingRecord::Else(SourceLocation Loc, SourceLocation IfLoc) { in Else() function in PreprocessingRecord
/external/clang/lib/CodeGen/
DCGStmt.cpp422 if (const Stmt *Else = S.getElse()) { in EmitIfStmt() local
429 EmitStmt(Else); in EmitIfStmt()

12