HomeSort by relevance Sort by last modified time
    Searched defs:Else (Results 1 - 22 of 22) sorted by null

  /external/clang/lib/Lex/
PPConditionalDirectiveRecord.cpp 107 void PPConditionalDirectiveRecord::Else(SourceLocation Loc,
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 18 | If | Then | Else
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 18 | If | Then | Else
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 18 | If | Then | Else
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
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...]
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...]
  /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);
  /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/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...]
SILowerControlFlow.cpp 78 void Else(MachineInstr &MI);
193 void SILowerControlFlowPass::Else(MachineInstr &MI) {
290 else
435 Else(MI);
466 else
  /external/mesa3d/src/gallium/drivers/r300/compiler/
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...]
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...]
  /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/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...]
toy.cpp 89 if (IdentifierStr == "else") return tok_else;
186 /// IfExprAST - Expression class for if/then/else.
188 ExprAST *Cond, *Then, *Else;
191 : Cond(cond), Then(then), Else(_else) {}
343 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
359 return Error("expected else");
363 ExprAST *Else = ParseExpression();
364 if (!Else) return 0;
366 return new IfExprAST(Cond, Then, Else);
811 } else {
    [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...]
toy.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);
722 } else {
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 113 if (IdentifierStr == "else") return tok_else;
210 /// IfExprAST - Expression class for if/then/else.
212 ExprAST *Cond, *Then, *Else;
215 : Cond(cond), Then(then), Else(_else) {}
367 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
383 return Error("expected else");
387 ExprAST *Else = ParseExpression();
388 if (!Else) return 0;
390 return new IfExprAST(Cond, Then, Else);
804 } 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/chromium_org/v8/src/
hydrogen.cc 71 #else
319 } else {
322 } else if (!HasEnvironment() && !IsFinished()) {
348 } else if (other->dominator() != NULL) {
355 } else {
477 } else {
605 } else {
746 } else {
751 } else {
810 // Handle if's without any expressions, they jump directly to the "else"
    [all...]

Completed in 336 milliseconds