Searched refs:Else (Results 1 - 25 of 45) sorted by relevance

12

/external/eigen/Eigen/src/Eigen2Support/
H A DMeta.h22 template<bool Condition, typename Then, typename Else>
25 template<typename Then, typename Else>
26 struct ei_meta_if <false, Then, Else> { typedef Else ret; };
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml49 | "else" -> [< 'Token.Else; stream >]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
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);
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);
/external/mesa3d/src/gallium/drivers/r300/compiler/
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);
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);
/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h97 virtual void Else(SourceLocation Loc, SourceLocation IfLoc);
H A DPPCallbacks.h289 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPCallbacks
460 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) { function in class:clang::PPChainedCallbacks
461 First->Else(Loc, IfLoc);
462 Second->Else(Loc, IfLoc);
/external/eigen/Eigen/src/Core/util/
H A DMeta.h28 template<bool Condition, typename Then, typename Else>
31 template<typename Then, typename Else>
32 struct conditional <false, Then, Else> { typedef Else type; };
/external/qemu-pc-bios/bochs/bios/
H A Dacpi-dsdt.dsl336 Else
365 Else
393 Else
473 Else
520 Else
567 Else
614 Else
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp144 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
147 : Cond(cond), Then(then), Else(_else) {}
293 ExprAST *Else = ParseExpression(); local
294 if (!Else) return 0;
296 return new IfExprAST(Cond, Then, Else);
543 Value *ElseV = Else->Codegen();
547 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp159 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
162 : Cond(cond), Then(then), Else(_else) {}
321 ExprAST *Else = ParseExpression(); local
322 if (!Else) return 0;
324 return new IfExprAST(Cond, Then, Else);
647 Value *ElseV = Else->Codegen();
651 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/lib/Target/R600/
H A DSIAnnotateControlFlow.cpp57 Constant *Else; member in class:__anon21467::SIAnnotateControlFlow
129 Else = M.getOrInsertFunction(
166 /// an "Else" block?
197 /// \brief Close the last "If" block and open a new "Else" block
199 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
/external/clang/lib/Lex/
H A DPPConditionalDirectiveRecord.cpp107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc, function in class:PPConditionalDirectiveRecord
/external/chromium_org/v8/src/
H A Dcode-stubs-hydrogen.cc317 if_number.Else();
365 if_fixed_cow.Else();
375 if_fixed.Else();
653 if_builder.Else();
789 if_nil.Else();
812 if_true.Else();
858 builder.Else();
/external/clang/lib/Analysis/
H A DBodyFarm.cpp334 Stmt *Else = M.makeReturn(RetVal); local
339 SourceLocation(), Else);
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp164 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
167 : Cond(cond), Then(then), Else(_else) {}
339 ExprAST *Else = ParseExpression(); local
340 if (!Else) return 0;
342 return new IfExprAST(Cond, Then, Else);
743 Value *ElseV = Else->Codegen();
747 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/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) {}
357 ExprAST *Else = ParseExpression(); local
358 if (!Else) return 0;
360 return new IfExprAST(Cond, Then, Else);
771 Value *ElseV = Else->Codegen();
775 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.
/external/llvm/examples/Kaleidoscope/MCJIT/initial/
H A Dtoy.cpp165 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
168 : Cond(cond), Then(then), Else(_else) {}
340 ExprAST *Else = ParseExpression(); local
341 if (!Else) return 0;
343 return new IfExprAST(Cond, Then, Else);
993 Value *ElseV = Else->Codegen();
997 // Codegen of 'Else' can change the current block, update ElseBB 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) {}
342 ExprAST *Else = ParseExpression(); local
343 if (!Else) return 0;
345 return new IfExprAST(Cond, Then, Else);
753 Value *ElseV = Else->Codegen();
757 // Codegen of 'Else' can change the current block, update ElseBB for the PHI.

Completed in 773 milliseconds

12