HomeSort by relevance Sort by last modified time
    Searched defs:Then (Results 1 - 14 of 14) 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/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 58 if (IdentifierStr == "then") return tok_then;
142 /// IfExprAST - Expression class for if/then/else.
144 ExprAST *Cond, *Then, *Else;
146 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
147 : Cond(cond), Then(then), Else(_else) {}
273 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
282 return Error("expected then");
283 getNextToken(); // eat the then
285 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 61 if (IdentifierStr == "then") return tok_then;
157 /// IfExprAST - Expression class for if/then/else.
159 ExprAST *Cond, *Then, *Else;
161 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
162 : Cond(cond), Then(then), Else(_else) {}
301 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
310 return Error("expected then");
311 getNextToken(); // eat the then
313 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter7/
toy.cpp 64 if (IdentifierStr == "then") return tok_then;
162 /// IfExprAST - Expression class for if/then/else.
164 ExprAST *Cond, *Then, *Else;
166 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
167 : Cond(cond), Then(then), Else(_else) {}
319 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
328 return Error("expected then");
329 getNextToken(); // eat the then
331 ExprAST *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 88 if (IdentifierStr == "then") return tok_then;
186 /// IfExprAST - Expression class for if/then/else.
188 ExprAST *Cond, *Then, *Else;
190 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
191 : Cond(cond), Then(then), Else(_else) {}
343 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
352 return Error("expected then");
353 getNextToken(); // eat the then
355 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 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...]
  /external/llvm/examples/Kaleidoscope/MCJIT/complete/
toy.cpp 112 if (IdentifierStr == "then") return tok_then;
210 /// IfExprAST - Expression class for if/then/else.
212 ExprAST *Cond, *Then, *Else;
214 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
215 : Cond(cond), Then(then), Else(_else) {}
367 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
376 return Error("expected then");
377 getNextToken(); // eat the then
379 ExprAST *Then = ParseExpression()
    [all...]
  /external/llvm/examples/Kaleidoscope/MCJIT/initial/
toy.cpp 65 if (IdentifierStr == "then") return tok_then;
163 /// IfExprAST - Expression class for if/then/else.
165 ExprAST *Cond, *Then, *Else;
167 IfExprAST(ExprAST *cond, ExprAST *then, ExprAST *_else)
168 : Cond(cond), Then(then), Else(_else) {}
320 /// ifexpr ::= 'if' expression 'then' expression 'else' expression
329 return Error("expected then");
330 getNextToken(); // eat the then
332 ExprAST *Then = ParseExpression()
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 52 /// contextual information. If AddStmtChoice is 'NotAlwaysAdd', then
105 /// VarIter is guaranteed to be greater then 0 for every valid iterator.
681 // If there is no target for the goto, then we are looking at an
699 // If there is no target block that contains label, then we are looking
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 805 void HGraphBuilder::IfBuilder::Then() {
811 // branch. However, we must pretend that the "then" branch is reachable,
    [all...]

Completed in 484 milliseconds