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

1 2

  /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/v8/src/compiler/
control-builders.cc 21 void IfBuilder::Else() {
71 control_if.Else();
  /external/clang/include/clang/Lex/
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) {
493 /// \brief Hook called whenever an \#else is seen.
494 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
495 First->Else(Loc, IfLoc);
496 Second->Else(Loc, IfLoc);
  /external/clang/lib/Analysis/
BodyFarm.cpp 291 // else return NO;
341 // Construct the else clause.
345 Stmt *Else = M.makeReturn(RetVal);
350 SourceLocation(), Else);
377 else {
385 else if (Injector) { Val = Injector->getBody(D); }
  /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/lib/Target/R600/
SILowerControlFlow.cpp 81 void Else(MachineInstr &MI);
198 void SILowerControlFlowPass::Else(MachineInstr &MI) {
317 } else {
339 } else {
465 Else(MI);
496 else
SIAnnotateControlFlow.cpp 38 static const char *const ElseIntrinsic = "llvm.SI.else";
41 static const char *const ElseBreakIntrinsic = "llvm.SI.else.break";
60 Constant *Else;
134 Else = M.getOrInsertFunction(
171 /// an "Else" block?
180 } else {
202 /// \brief Close the last "If" block and open a new "Else" block
204 Value *Ret = CallInst::Create(Else, popSaved(), "", Term);
255 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
260 } else {
    [all...]
  /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 71 if (IdentifierStr == "else")
162 /// IfExprAST - Expression class for if/then/else.
164 ExprAST *Cond, *Then, *Else;
168 : Cond(cond), Then(then), Else(_else) {}
308 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
326 return Error("expected else");
330 ExprAST *Else = ParseExpression();
331 if (!Else)
334 return new IfExprAST(Cond, Then, Else);
581 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 75 if (IdentifierStr == "else")
181 /// IfExprAST - Expression class for if/then/else.
183 ExprAST *Cond, *Then, *Else;
187 : Cond(cond), Then(then), Else(_else) {}
339 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
357 return Error("expected else");
361 ExprAST *Else = ParseExpression();
362 if (!Else)
365 return new IfExprAST(Cond, Then, Else);
689 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 78 if (IdentifierStr == "else")
187 /// IfExprAST - Expression class for if/then/else.
189 ExprAST *Cond, *Then, *Else;
193 : Cond(cond), Then(then), Else(_else) {}
359 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
377 return Error("expected else");
381 ExprAST *Else = ParseExpression();
382 if (!Else)
385 return new IfExprAST(Cond, Then, Else);
794 // 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 90 if (IdentifierStr == "else") return tok_else;
187 /// IfExprAST - Expression class for if/then/else.
189 ExprAST *Cond, *Then, *Else;
192 : Cond(cond), Then(then), Else(_else) {}
344 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
360 return Error("expected else");
364 ExprAST *Else = ParseExpression();
365 if (!Else) return 0;
367 return new IfExprAST(Cond, Then, Else);
812 } 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 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);
723 } else {
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 75 return "else";
120 } else
148 if (IdentifierStr == "else")
295 /// IfExprAST - Expression class for if/then/else.
297 ExprAST *Cond, *Then, *Else;
301 : ExprAST(Loc), Cond(cond), Then(then), Else(_else) {}
306 Else->dump(indent(out, ind) << "Else:", ind + 1);
503 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
523 return Error("expected else");
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 109 if (IdentifierStr == "else") return tok_else;
206 /// IfExprAST - Expression class for if/then/else.
208 ExprAST *Cond, *Then, *Else;
211 : Cond(cond), Then(then), Else(_else) {}
363 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return Error("expected else");
383 ExprAST *Else = ParseExpression();
384 if (!Else) return 0;
386 return new IfExprAST(Cond, Then, Else);
880 } 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);
971 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 74 if (IdentifierStr == "else") return tok_else;
176 /// IfExprAST - Expression class for if/then/else.
179 std::unique_ptr<ExprAST> Else)
180 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
183 std::unique_ptr<ExprAST> Cond, Then, Else;
346 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
364 return ErrorU<ExprAST>("expected else");
368 auto Else = ParseExpression();
369 if (!Else)
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 73 if (IdentifierStr == "else") return tok_else;
175 /// IfExprAST - Expression class for if/then/else.
178 std::unique_ptr<ExprAST> Else)
179 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
182 std::unique_ptr<ExprAST> Cond, Then, Else;
345 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
363 return ErrorU<ExprAST>("expected else");
367 auto Else = ParseExpression();
368 if (!Else)
    [all...]

Completed in 405 milliseconds

1 2