HomeSort by relevance Sort by last modified time
    Searched defs:Else (Results 26 - 50 of 67) sorted by null

12 3

  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 81 if (IdentifierStr == "else")
174 /// IfExprAST - Expression class for if/then/else.
176 std::unique_ptr<ExprAST> Cond, Then, Else;
180 std::unique_ptr<ExprAST> Else)
181 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
303 else
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
339 return LogError("expected else");
343 auto Else = ParseExpression()
    [all...]
  /external/llvm/tools/llvm-c-test/
echo.cpp 124 else
404 // as a dependancy to somethign else. We need to make sure
423 else
436 LLVMValueRef Else = LLVMGetOperand(Src, 1);
437 LLVMBasicBlockRef ElseBB = DeclareBB(LLVMValueAsBasicBlock(Else));
566 else
  /external/swiftshader/third_party/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/BuildingAJIT/Chapter1/
toy.cpp 89 if (IdentifierStr == "else")
200 /// IfExprAST - Expression class for if/then/else.
202 std::unique_ptr<ExprAST> Cond, Then, Else;
206 std::unique_ptr<ExprAST> Else)
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
356 else
374 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
392 return LogError("expected else");
396 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/
toy.cpp 89 if (IdentifierStr == "else")
200 /// IfExprAST - Expression class for if/then/else.
202 std::unique_ptr<ExprAST> Cond, Then, Else;
206 std::unique_ptr<ExprAST> Else)
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
356 else
374 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
392 return LogError("expected else");
396 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/
toy.cpp 89 if (IdentifierStr == "else")
200 /// IfExprAST - Expression class for if/then/else.
202 std::unique_ptr<ExprAST> Cond, Then, Else;
206 std::unique_ptr<ExprAST> Else)
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
356 else
374 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
392 return LogError("expected else");
396 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
toy.cpp 90 if (IdentifierStr == "else")
201 /// IfExprAST - Expression class for if/then/else.
203 std::unique_ptr<ExprAST> Cond, Then, Else;
207 std::unique_ptr<ExprAST> Else)
208 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
344 else
362 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
380 return LogError("expected else");
384 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
toy.cpp 105 if (IdentifierStr == "else")
216 /// IfExprAST - Expression class for if/then/else.
218 std::unique_ptr<ExprAST> Cond, Then, Else;
222 std::unique_ptr<ExprAST> Else)
223 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
359 else
377 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
395 return LogError("expected else");
399 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 85 if (IdentifierStr == "else")
193 /// IfExprAST - Expression class for if/then/else.
195 std::unique_ptr<ExprAST> Cond, Then, Else;
199 std::unique_ptr<ExprAST> Else)
200 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
336 else
354 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
372 return LogError("expected else");
376 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 89 if (IdentifierStr == "else")
200 /// IfExprAST - Expression class for if/then/else.
202 std::unique_ptr<ExprAST> Cond, Then, Else;
206 std::unique_ptr<ExprAST> Else)
207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
356 else
374 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
392 return LogError("expected else");
396 auto Else = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 86 if (IdentifierStr == "else")
197 /// IfExprAST - Expression class for if/then/else.
199 std::unique_ptr<ExprAST> Cond, Then, Else;
203 std::unique_ptr<ExprAST> Else)
204 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
353 else
371 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
389 return LogError("expected else");
393 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/swiftshader/third_party/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/swiftshader/third_party/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/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/libcxxabi/src/
cxa_demangle.cpp 39 #else
509 } else {
546 else
575 else
606 else
688 else if (Dimension.isNode())
797 else
824 } else {
928 } else {
933 else if (Dimension.isString()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter9/
toy.cpp 71 return "else";
114 } else
145 if (IdentifierStr == "else")
293 /// IfExprAST - Expression class for if/then/else.
295 std::unique_ptr<ExprAST> Cond, Then, Else;
299 std::unique_ptr<ExprAST> Then, std::unique_ptr<ExprAST> Else)
301 Else(std::move(Else)) {}
307 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);
969 // Create blocks for the then and else cases. Insert the 'then' block at th
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ASTMatchers/
ASTMatchers.h     [all...]

Completed in 1731 milliseconds

12 3