HomeSort by relevance Sort by last modified time
    Searched refs:Then (Results 26 - 50 of 137) sorted by null

12 3 4 5 6

  /external/icu/icu4c/source/data/rbnf/
rbnffiles.mk 11 # Then, you can have your local changes remain even if you upgrade or
  /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/skia/tools/lua/
count_reduced_clipstacks.lua 25 if (element["type"] == "path") then
26 if (element["path"]:getSegmentTypes() == "line" and element["path"]:isConvex()) then
40 if (string.starts(t.verb, "draw")) then
43 if (stackstr ~= "") then
44 if (stats[stackstr] == nil) then
50 if (stackstr ~= oldstackstr) then
75 aggregate table on the automated scraper system. Then use the print_stats function on
78 if (v.drawCnt ~= nil) then
ngrams.lua 19 -- list containing just the verb to the master list. Then, backtrack over the
41 if idx > 0 then
53 if counts[ngram] == nil then
63 io.write("if counts['", ngram, "'] == nil then counts['", ngram, "'] = ", count, " else counts['", ngram, "'] = counts['", ngram, "'] + ", count, " end\n")
  /external/v8/test/intl/break-iterator/
default-locale.js 40 // Then check for equality.
  /external/v8/test/intl/collator/
default-locale.js 40 // Then check for equality.
  /external/v8/test/intl/date-format/
default-locale.js 40 // Then check for equality.
  /external/v8/test/intl/number-format/
default-locale.js 40 // Then check for equality.
  /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/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/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/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/chromium-trace/catapult/third_party/flot/
PLUGINS.md 80 HTML page and then it can be used with:
138 Then they will be copied by Flot into each series, providing default
  /external/icu/icu4c/source/data/coll/
colfiles.mk 11 # Then, you can have your local changes remain even if you upgrade or
  /external/llvm/utils/
codegen-diff 101 the function you want is compiled. Then use the B<disassemble> command
  /external/valgrind/gdbserver_tests/
mchelp.stdoutB.exp 3 v.wait [<ms>] : sleep <ms> (default 0) then continue
19 Then prints the bytes values below the corresponding validity bits
57 v.wait [<ms>] : sleep <ms> (default 0) then continue
88 Then prints the bytes values below the corresponding validity bits
  /external/v8/src/crankshaft/
hydrogen.cc     [all...]
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
parser_test.js 55 //Then for each node in the tree we run serializer and compare results with the substring
  /external/icu/icu4c/source/data/mappings/
ucmfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
32 # If you are planning to exclude EBCDIC mappings in you data then please delete
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 49 (* ifexpr ::= 'if' expr 'then' expr 'else' expr *)
51 'Token.Then ?? "expected 'then'"; t=parse_expr;
95 if token_prec < expr_prec then lhs else begin
110 then parse_bin_rhs (token_prec + 1) rhs stream

Completed in 483 milliseconds

12 3 4 5 6