HomeSort by relevance Sort by last modified time
    Searched defs:Else (Results 1 - 25 of 30) 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() {
70 control_if.Else();
81 control_if.Else();
151 control_if.Else();
160 control_if.Else();
  /external/clang/include/clang/Lex/
PPCallbacks.h 266 /// \#if/\#else directive and ends after the \#endif/\#else directive.
310 /// \brief Hook called whenever an \#else is seen.
313 virtual void Else(SourceLocation Loc, SourceLocation IfLoc) {
494 /// \brief Hook called whenever an \#else is seen.
495 void Else(SourceLocation Loc, SourceLocation IfLoc) override {
496 First->Else(Loc, IfLoc);
497 Second->Else(Loc, IfLoc);
  /external/clang/lib/Analysis/
BodyFarm.cpp 288 // else return NO;
338 // Construct the else clause.
342 Stmt *Else = M.makeReturn(RetVal);
347 SourceLocation(), Else);
374 else {
382 else if (Injector) { Val = Injector->getBody(D); }
  /external/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 67 else
133 // } else if (b) {
138 const Stmt *Else = Stmt2;
139 while (const IfStmt *I2 = dyn_cast_or_null<IfStmt>(Else)) {
149 Else = I2->getElse();
160 // } else
239 } else if ((FloatLit1) && (FloatLit2)) {
245 } else if (LHS->getType()->hasFloatingRepresentation()) {
250 } else {
260 else
    [all...]
  /external/libchrome/sandbox/linux/bpf_dsl/
bpf_dsl.cc 83 // We compile the "then" and "else" expressions in separate statements so
313 ResultExpr Elser::Else(const ResultExpr& else_result) const {
315 // if/then/else sequence. Also, we've already accumulated all
320 // If(b1, e1).ElseIf(b2, e2).ElseIf(b3, e3).Else(e4)
  /external/llvm/lib/Target/AMDGPU/
SILowerControlFlow.cpp 81 void Else(MachineInstr &MI);
201 void SILowerControlFlowPass::Else(MachineInstr &MI) {
319 } else {
342 } else {
347 } else {
419 } else {
502 Else(MI);
533 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);
263 } else if (Instruction *Inst = dyn_cast<Instruction>(Cond)) {
268 } 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 69 if (IdentifierStr == "else")
162 /// IfExprAST - Expression class for if/then/else.
164 std::unique_ptr<ExprAST> Cond, Then, Else;
168 std::unique_ptr<ExprAST> Else)
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
291 else
309 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
327 return Error("expected else");
331 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 73 if (IdentifierStr == "else")
181 /// IfExprAST - Expression class for if/then/else.
183 std::unique_ptr<ExprAST> Cond, Then, Else;
187 std::unique_ptr<ExprAST> Else)
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
324 else
342 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
360 return Error("expected else");
364 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 76 if (IdentifierStr == "else")
187 /// IfExprAST - Expression class for if/then/else.
189 std::unique_ptr<ExprAST> Cond, Then, Else;
193 std::unique_ptr<ExprAST> Else)
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
343 else
361 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
379 return Error("expected else");
383 auto Else = ParseExpression()
    [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 71 return "else";
113 } else
144 if (IdentifierStr == "else")
292 /// IfExprAST - Expression class for if/then/else.
294 std::unique_ptr<ExprAST> Cond, Then, Else;
298 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
300 Else(std::move(Else)) {}
306 Else->dump(indent(out, ind) << "Else:", ind + 1)
    [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...]

Completed in 440 milliseconds

1 2