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

  /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 18 void IfBuilder::Then() { builder_->NewIfTrue(); }
69 control_if.Then();
79 control_if.Then();
149 control_if.Then();
159 control_if.Then();
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 67 if (IdentifierStr == "then")
162 /// IfExprAST - Expression class for if/then/else.
164 std::unique_ptr<ExprAST> Cond, Then, Else;
167 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
169 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
309 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
319 return Error("expected then");
320 getNextToken(); // eat the then
322 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 71 if (IdentifierStr == "then")
181 /// IfExprAST - Expression class for if/then/else.
183 std::unique_ptr<ExprAST> Cond, Then, Else;
186 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
188 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
342 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
352 return Error("expected then");
353 getNextToken(); // eat the then
355 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 74 if (IdentifierStr == "then")
187 /// IfExprAST - Expression class for if/then/else.
189 std::unique_ptr<ExprAST> Cond, Then, Else;
192 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
194 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {}
361 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
371 return Error("expected then");
372 getNextToken(); // eat the then
374 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/cached/
toy-jit.cpp 82 if (IdentifierStr == "then") return tok_then;
180 /// IfExprAST - Expression class for if/then/else.
182 ExprAST *Cond, *Then, *Else;
184 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
185 : Cond(cond), Then(then), Else(_else) {}
337 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
346 return Error("expected then");
347 getNextToken(); // eat the then
349 ExprAST *Then = ParseExpression()
    [all...]
toy.cpp 89 if (IdentifierStr == "then") return tok_then;
187 /// IfExprAST - Expression class for if/then/else.
189 ExprAST *Cond, *Then, *Else;
191 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
192 : Cond(cond), Then(then), Else(_else) {}
344 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
353 return Error("expected then");
354 getNextToken(); // eat the then
356 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/lazy/
toy-jit.cpp 67 if (IdentifierStr == "then") return tok_then;
165 /// IfExprAST - Expression class for if/then/else.
167 ExprAST *Cond, *Then, *Else;
169 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
170 : Cond(cond), Then(then), Else(_else) {}
322 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
331 return Error("expected then");
332 getNextToken(); // eat the then
334 ExprAST *Then = ParseExpression()
    [all...]
toy.cpp 68 if (IdentifierStr == "then") return tok_then;
166 /// IfExprAST - Expression class for if/then/else.
168 ExprAST *Cond, *Then, *Else;
170 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
171 : Cond(cond), Then(then), Else(_else) {}
323 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
332 return Error("expected then");
333 getNextToken(); // eat the then
335 ExprAST *Then = ParseExpression()
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter8/
toy.cpp 69 return "then";
142 if (IdentifierStr == "then")
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)
299 : ExprAST(Loc), Cond(std::move(Cond)), Then(std::move(Then)),
305 Then->dump(indent(out, ind) << "Then:", ind + 1);
500 /// ifexpr ::= 'if' expression 'then' expression 'else' expressio
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 108 if (IdentifierStr == "then") return tok_then;
206 /// IfExprAST - Expression class for if/then/else.
208 ExprAST *Cond, *Then, *Else;
210 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
211 : Cond(cond), Then(then), Else(_else) {}
363 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
372 return Error("expected then");
373 getNextToken(); // eat the then
375 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 66 if (IdentifierStr == "then") return tok_then;
164 /// IfExprAST - Expression class for if/then/else.
166 ExprAST *Cond, *Then, *Else;
168 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
169 : Cond(cond), Then(then), Else(_else) {}
321 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
330 return Error("expected then");
331 getNextToken(); // eat the then
333 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/fully_lazy/
toy.cpp 73 if (IdentifierStr == "then") return tok_then;
176 /// IfExprAST - Expression class for if/then/else.
178 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
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
356 return ErrorU<ExprAST>("expected then");
357 getNextToken(); // eat the then
359 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/initial/
toy.cpp 72 if (IdentifierStr == "then") return tok_then;
175 /// IfExprAST - Expression class for if/then/else.
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
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
355 return ErrorU<ExprAST>("expected then");
356 getNextToken(); // eat the then
358 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/
toy.cpp 72 if (IdentifierStr == "then") return tok_then;
175 /// IfExprAST - Expression class for if/then/else.
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
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
355 return ErrorU<ExprAST>("expected then");
356 getNextToken(); // eat the then
358 auto Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/
toy.cpp 72 if (IdentifierStr == "then") return tok_then;
175 /// IfExprAST - Expression class for if/then/else.
177 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then,
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
355 return ErrorU<ExprAST>("expected then");
356 getNextToken(); // eat the then
358 auto Then = ParseExpression()
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 125 /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
178 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
    [all...]
  /external/v8/src/
api.cc 394 // If we don't do this then we end up with a stray root pointing at the
    [all...]
  /external/v8/src/crankshaft/
hydrogen.cc 801 // Handle if-then-elseif
903 void HGraphBuilder::IfBuilder::Then() {
909 // branch. However, we must pretend that the "then" branch is reachable,
973 Then();
    [all...]

Completed in 789 milliseconds