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

1 2

  /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/clang/include/clang/Lex/
PPCallbacks.h 246 /// \#if/\#else directive and ends after the \#endif/\#else directive.
286 /// \brief Hook called whenever an \#else is seen.
289 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
459 /// \brief Hook called whenever an \#else is seen.
460 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
461 First->Else(Loc, IfLoc);
462 Second->Else(Loc, IfLoc);
PPConditionalDirectiveRecord.h 97 virtual void Else(SourceLocation Loc, SourceLocation 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 59 if (IdentifierStr == "else") return tok_else;
142 /// IfExprAST - Expression class for if/then/else.
144 ExprAST *Cond, *Then, *Else;
147 : Cond(cond), Then(then), Else(_else) {}
273 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
289 return Error("expected else");
293 ExprAST *Else = ParseExpression();
294 if (!Else) return 0;
296 return new IfExprAST(Cond, Then, Else);
521 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 62 if (IdentifierStr == "else") return tok_else;
157 /// IfExprAST - Expression class for if/then/else.
159 ExprAST *Cond, *Then, *Else;
162 : Cond(cond), Then(then), Else(_else) {}
301 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
317 return Error("expected else");
321 ExprAST *Else = ParseExpression();
322 if (!Else) return 0;
324 return new IfExprAST(Cond, Then, Else);
625 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 35 static const char *const ElseIntrinsic = "llvm.SI.else";
38 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
57 Constant *Else;
129 Else = M.getOrInsertFunction(
166 /// an "Else" block?
175 } else {
197 /// \brief Close the last "If" block and open a new "Else" block
199 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
248 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
255 } else {
    [all...]
  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,
  /external/chromium_org/v8/src/
code-stubs-hydrogen.cc 168 } else {
194 } else {
220 } else {
317 if_number.Else();
365 if_fixed_cow.Else();
375 if_fixed.Else();
381 } else {
653 if_builder.Else();
789 if_nil.Else();
812 if_true.Else();
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 280 // else return NO;
330 // Construct the else clause.
334 Stmt *Else = M.makeReturn(RetVal);
339 SourceLocation(), Else);
366 else {
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 65 if (IdentifierStr == "else") return tok_else;
162 /// IfExprAST - Expression class for if/then/else.
164 ExprAST *Cond, *Then, *Else;
167 : Cond(cond), Then(then), Else(_else) {}
319 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
335 return Error("expected else");
339 ExprAST *Else = ParseExpression();
340 if (!Else) return 0;
342 return new IfExprAST(Cond, Then, Else);
721 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 83 if (IdentifierStr == "else") return tok_else;
180 /// IfExprAST - Expression class for if/then/else.
182 ExprAST *Cond, *Then, *Else;
185 : Cond(cond), Then(then), Else(_else) {}
337 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
353 return Error("expected else");
357 ExprAST *Else = ParseExpression();
358 if (!Else) return 0;
360 return new IfExprAST(Cond, Then, Else);
659 #else
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
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) {}
320 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
336 return Error("expected else");
340 ExprAST *Else = ParseExpression();
341 if (!Else) return 0;
343 return new IfExprAST(Cond, Then, Else);
971 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 68 if (IdentifierStr == "else") return tok_else;
165 /// IfExprAST - Expression class for if/then/else.
167 ExprAST *Cond, *Then, *Else;
170 : Cond(cond), Then(then), Else(_else) {}
322 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
338 return Error("expected else");
342 ExprAST *Else = ParseExpression();
343 if (!Else) return 0;
345 return new IfExprAST(Cond, Then, Else);
644 #else
    [all...]

Completed in 1329 milliseconds

1 2