Searched defs:Else (Results 1 - 25 of 30) 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/chromium_org/v8/src/compiler/
H A Dcontrol-builders.cc21 void IfBuilder::Else() { function in class:v8::internal::compiler::IfBuilder
71 control_if.Else();
/external/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog_emit.c59 int Else; member in struct:branch_info
551 branch->Else = -1;
567 branch->Else = newip;
596 if (branch->Else >= 0) {
599 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1);
601 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP
608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1);
H A Dradeon_emulate_branches.c46 struct rc_instruction * Else; member in struct:branch_info
100 branch->Else = inst;
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
217 if (branch->Else)
218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst);
230 if (branch->Else)
231 rc_remove_instruction(branch->Else);
/external/clang/lib/Analysis/
H A DBodyFarm.cpp346 Stmt *Else = M.makeReturn(RetVal); local
351 SourceLocation(), Else);
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp59 Constant *Else; member in class:__anon26120::SIAnnotateControlFlow
130 Else = M.getOrInsertFunction(
167 /// an "Else" block?
198 /// \brief Close the last "If" block and open a new "Else" block
200 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
H A DSILowerControlFlow.cpp79 void Else(MachineInstr &MI);
197 void SILowerControlFlowPass::Else(MachineInstr &MI) { function in class:SILowerControlFlowPass
474 Else(MI);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dr500_fragprog_emit.c59 int Else; member in struct:branch_info
551 branch->Else = -1;
567 branch->Else = newip;
596 if (branch->Else >= 0) {
599 s->Code->inst[branch->If].inst3 = R500_FC_JUMP_ADDR(branch->Else + 1);
601 s->Code->inst[branch->Else].inst2 = R500_FC_OP_JUMP
608 s->Code->inst[branch->Else].inst3 = R500_FC_JUMP_ADDR(branch->Endif + 1);
H A Dradeon_emulate_branches.c46 struct rc_instruction * Else; member in struct:branch_info
100 branch->Else = inst;
215 allocate_and_insert_proxies(s, &IfProxies, branch->If->Next, branch->Else ? branch->Else : inst);
217 if (branch->Else)
218 allocate_and_insert_proxies(s, &ElseProxies, branch->Else->Next, inst);
230 if (branch->Else)
231 rc_remove_instruction(branch->Else);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DIdenticalExprChecker.cpp120 const Stmt *Else = Stmt2; local
121 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
131 Else = I2->getElse();
/external/chromium_org/sandbox/linux/bpf_dsl/
H A Dbpf_dsl.cc334 ResultExpr Elser::Else(const ResultExpr& else_result) const { function in class:sandbox::bpf_dsl::Elser
341 // If(b1, e1).ElseIf(b2, e2).ElseIf(b3, e3).Else(e4)
/external/clang/include/clang/Lex/
H A DPPCallbacks.h312 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
497 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
498 First->Else(Loc, IfLoc);
499 Second->Else(Loc, IfLoc);
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp145 ExprAST *Cond, *Then, *Else; member in class:__anon25453::IfExprAST
148 : Cond(cond), Then(then), Else(_else) {}
295 ExprAST *Else = ParseExpression(); local
296 if (!Else) return 0;
298 return new IfExprAST(Cond, Then, Else);
545 Value *ElseV = Else->Codegen();
549 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp160 ExprAST *Cond, *Then, *Else; member in class:__anon25454::IfExprAST
163 : Cond(cond), Then(then), Else(_else) {}
323 ExprAST *Else = ParseExpression(); local
324 if (!Else) return 0;
326 return new IfExprAST(Cond, Then, Else);
649 Value *ElseV = Else->Codegen();
653 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/clang/include/clang/ASTMatchers/
H A DASTMatchers.h2399 const Stmt *const Else = Node.getElse(); local
2400 return (Else != nullptr && InnerMatcher.matches(*Else, Finder, Builder));
/external/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp643 const Stmt *Else, bool CondVal,
650 if (Else) {
654 SourceRange(ElseKwLoc, Else->getLocEnd()));
658 if (Else)
661 Else->getLocStart()));
642 CreateIfFixit(Sema &S, const Stmt *If, const Stmt *Then, const Stmt *Else, bool CondVal, FixItHint &Fixit1, FixItHint &Fixit2) argument
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp165 ExprAST *Cond, *Then, *Else; member in class:__anon25455::IfExprAST
168 : Cond(cond), Then(then), Else(_else) {}
341 ExprAST *Else = ParseExpression(); local
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
745 Value *ElseV = Else->Codegen();
749 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/cached/
H A Dtoy-jit.cpp183 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
186 : Cond(cond), Then(then), Else(_else) {}
358 ExprAST *Else = ParseExpression(); local
359 if (!Else) return 0;
361 return new IfExprAST(Cond, Then, Else);
772 Value *ElseV = Else->Codegen();
776 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
H A Dtoy.cpp189 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
192 : Cond(cond), Then(then), Else(_else) {}
364 ExprAST *Else = ParseExpression(); local
365 if (!Else) return 0;
367 return new IfExprAST(Cond, Then, Else);
1136 Value *ElseV = Else->Codegen();
1140 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/complete/
H A Dtoy.cpp213 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
216 : Cond(cond), Then(then), Else(_else) {}
388 ExprAST *Else = ParseExpression(); local
389 if (!Else) return 0;
391 return new IfExprAST(Cond, Then, Else);
1314 Value *ElseV = Else->Codegen();
1318 // Codegen of 'Else' can change the current block, update ElseBB 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) {}
341 ExprAST *Else = ParseExpression(); local
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
994 Value *ElseV = Else->Codegen();
998 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/
H A Dtoy-jit.cpp168 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
171 : Cond(cond), Then(then), Else(_else) {}
343 ExprAST *Else = ParseExpression(); local
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
754 Value *ElseV = Else->Codegen();
758 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.

Completed in 6056 milliseconds

12