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

1 2 3 4 5 6

  /external/libpng/contrib/pngminus/
makevms.com 10 $ then
13 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
16 $ then
17 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
19 $ then
26 $ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
60 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
65 $ If Argument .Eqs. "" Then Goto Exit
69 $ If File .Eqs. " " Then Goto Endl
74 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextE
    [all...]
  /external/eigen/Eigen/src/Eigen2Support/
Meta.h 22 template<bool Condition, typename Then, typename Else>
23 struct ei_meta_if { typedef Then ret; };
25 template<typename Then, typename Else>
26 struct ei_meta_if <false, Then, Else> { typedef Else ret; };
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
token.ml 18 | If | Then | Else
lexer.ml 48 | "then" -> [< 'Token.Then; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
token.ml 18 | If | Then | Else
lexer.ml 48 | "then" -> [< 'Token.Then; stream >]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
token.ml 18 | If | Then | Else
lexer.ml 48 | "then" -> [< 'Token.Then; stream >]
  /external/libpng/scripts/
makevms.com 11 $ then
20 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
21 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
28 $ then
31 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
34 $ then
35 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
37 $ then
44 $ if f$trnlnm("SYS").eqs."" then define sys decc$library_include:
54 $ then
    [all...]
  /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();
control-builders.h 49 void Then();
54 Environment* then_environment_; // Environment after the 'then' body.
  /external/icu/icu4c/source/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /external/v8/src/
code-stubs-hydrogen.cc 209 builder.Then();
307 is_smi.Then();
313 is_number.Then();
323 is_string.Then();
331 is_oddball.Then();
341 is_symbol.Then();
355 is_function.Then();
363 is_##type.Then(); \
372 is_undetectable.Then();
424 if_notundefined.Then();
    [all...]
  /external/icu/icu4c/source/data/misc/
miscfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re-
  /external/icu/icu4c/source/data/sprep/
sprepfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or
  /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/eigen/Eigen/src/Core/util/
Meta.h 28 template<bool Condition, typename Then, typename Else>
29 struct conditional { typedef Then type; };
31 template<typename Then, typename Else>
32 struct conditional <false, Then, Else> { typedef Else type; };
111 * If none of these members is provided, then the type of the first argument is returned. FIXME, that behavior is a pretty bad hack.
  /external/icu/icu4c/source/data/brkitr/
brkfiles.mk 11 # Then, you can have your local changes remain even if you upgrade or
  /external/libpng/contrib/gregbook/
makevms.com 13 $ if f$search("[---.zlib]zlib.h").nes."" then zpath = "[---.zlib]"
14 $ if f$search("[--]png.h").nes."" then pngpath = "[--]"
16 $ if f$search("[-.zlib]zlib.h").nes."" then zpath = "[-.zlib]"
17 $ if f$search("[-.libpng]png.h").nes."" then pngpath = "[-.libpng]"
20 $ then
26 $ then
35 $ then
38 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
41 $ then
42 $ if f$trnlnm("SYS").eqs."" then define sys sys$library
    [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...]
  /hardware/intel/bootstub/
bootstub.mk 49 if [ "$$ACTUAL_SIZE" -gt "$(BOOTSTUB_SIZE)" ]; then \
55 # Then assemble the final bootstub file
  /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/mesa3d/scons/
crossmingw.py 72 # First search in the SCons path and then the OS path:
143 the c_file from the sources list, then appends the new .o file to
144 sources. Then return the new sources list.
  /external/zlib/src/
make_vms.com 26 $ on error then goto err_exit
63 $!!! if axp .or. ia64 then set proc/parse=extended
73 $ then
74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
94 $ then
97 $ then
99 $ then
111 $ then
117 $ then
    [all...]

Completed in 419 milliseconds

1 2 3 4 5 6