HomeSort by relevance Sort by last modified time
    Searched refs:Else (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/eigen/Eigen/src/Eigen2Support/
Meta.h 22 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/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 18 | If | Then | Else
lexer.ml 49 | "else" -> [< 'Token.Else; stream >]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 46 struct rc_instruction * Else;
93 rc_error(s->C, "Encountered ELSE outside of branches");
100 branch->Else = inst;
114 } else {
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);
    [all...]
r500_fragprog_emit.c 59 int Else;
210 } else if (src.File == RC_FILE_TEMPORARY || src.File == RC_FILE_INPUT) {
213 } else if (src.File == RC_FILE_INLINE) {
264 } else {
352 else
551 branch->Else = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
596 if (branch->Else >= 0)
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_emulate_branches.c 46 struct rc_instruction * Else;
93 rc_error(s->C, "Encountered ELSE outside of branches");
100 branch->Else = inst;
114 } else {
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);
    [all...]
r500_fragprog_emit.c 59 int Else;
210 } else if (src.File == RC_FILE_TEMPORARY || src.File == RC_FILE_INPUT) {
213 } else if (src.File == RC_FILE_INLINE) {
264 } else {
352 else
551 branch->Else = -1;
562 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
567 branch->Else = newip;
574 rc_error(s->C, "%s: got ELSE outside a branch", __FUNCTION__);
596 if (branch->Else >= 0)
    [all...]
  /external/chromium_org/v8/src/
code-stubs-hydrogen.cc 168 } else {
193 } else {
296 if_number.Else();
359 zero_capacity.Else();
367 if_fixed_cow.Else();
376 if_fixed.Else();
836 if_nil.Else();
883 if_leftisstring.Else();
892 } else {
903 if_rightisstring.Else();
    [all...]
  /external/clang/include/clang/Lex/
PPConditionalDirectiveRecord.h 97 void Else(SourceLocation Loc, SourceLocation IfLoc) override;
PPCallbacks.h 265 /// \#if/\#else directive and ends after the \#endif/\#else directive.
309 /// \brief Hook called whenever an \#else is seen.
312 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
496 /// \brief Hook called whenever an \#else is seen.
497 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
498 First->Else(Loc, IfLoc);
499 Second->Else(Loc, IfLoc);
  /external/eigen/Eigen/src/Core/util/
Meta.h 28 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/
acpi-dsdt.dsl 336 Else
365 Else
393 Else
473 Else
520 Else
567 Else
614 Else
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 60 if (IdentifierStr == "else") return tok_else;
143 /// IfExprAST - Expression class for if/then/else.
145 ExprAST *Cond, *Then, *Else;
148 : Cond(cond), Then(then), Else(_else) {}
275 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
291 return Error("expected else");
295 ExprAST *Else = ParseExpression();
296 if (!Else) return 0;
298 return new IfExprAST(Cond, Then, Else);
523 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 63 if (IdentifierStr == "else") return tok_else;
158 /// IfExprAST - Expression class for if/then/else.
160 ExprAST *Cond, *Then, *Else;
163 : Cond(cond), Then(then), Else(_else) {}
303 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
319 return Error("expected else");
323 ExprAST *Else = ParseExpression();
324 if (!Else) return 0;
326 return new IfExprAST(Cond, Then, Else);
627 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 37 static const char *const ElseIntrinsic = "llvm.SI.else";
40 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
59 Constant *Else;
130 Else = M.getOrInsertFunction(
167 /// an "Else" block?
176 } else {
198 /// \brief Close the last "If" block and open a new "Else" block
200 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
250 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
256 } else {
    [all...]
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 67 else
115 // } else if (b) {
120 const Stmt *Else = Stmt2;
121 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
131 Else = I2->getElse();
142 // } else
221 } else if ((FloatLit1) && (FloatLit2)) {
227 } else if (LHS->getType()->hasFloatingRepresentation()) {
232 } else {
242 else
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 66 if (IdentifierStr == "else") return tok_else;
163 /// IfExprAST - Expression class for if/then/else.
165 ExprAST *Cond, *Then, *Else;
168 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
337 return Error("expected else");
341 ExprAST *Else = ParseExpression();
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
723 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 84 if (IdentifierStr == "else") return tok_else;
181 /// IfExprAST - Expression class for if/then/else.
183 ExprAST *Cond, *Then, *Else;
186 : Cond(cond), Then(then), Else(_else) {}
338 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
354 return Error("expected else");
358 ExprAST *Else = ParseExpression();
359 if (!Else) return 0;
361 return new IfExprAST(Cond, Then, Else);
660 #else
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 67 if (IdentifierStr == "else") return tok_else;
164 /// IfExprAST - Expression class for if/then/else.
166 ExprAST *Cond, *Then, *Else;
169 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
337 return Error("expected else");
341 ExprAST *Else = ParseExpression();
342 if (!Else) return 0;
344 return new IfExprAST(Cond, Then, Else);
972 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 69 if (IdentifierStr == "else") return tok_else;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
339 return Error("expected else");
343 ExprAST *Else = ParseExpression();
344 if (!Else) return 0;
346 return new IfExprAST(Cond, Then, Else);
645 #else
    [all...]

Completed in 1120 milliseconds

1 2 3