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

1 2 3

  /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/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/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/icu4c/data/translit/
trnsfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re
  /external/icu4c/data/misc/
miscfiles.mk 10 # Then, you can have your local changes remain even if you upgrade or re-
  /external/icu4c/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 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/webkit/Tools/Scripts/
update-webkit-support-libs 144 Then run build-webkit again.
  /external/icu4c/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/libvpx/vp8/encoder/arm/neon/
fastfdct8x4_neon.asm 39 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[1], d6=ip[2], d8=ip[3]
40 ;transpose d3, d5, d7, d9. Then, d3=ip[0], d5=ip[1], d7=ip[2], d9=ip[3]
95 ;transpose d2, d4, d6, d8. Then, d2=ip[0], d4=ip[4], d6=ip[8], d8=ip[12]
96 ;transpose d3, d5, d7, d9. Then, d3=ip[0], d5=ip[4], d7=ip[8], d9=ip[12]
fastfdct4x4_neon.asm 39 ;transpose d2, d3, d4, d5. Then, d2=ip[0], d3=ip[1], d4=ip[2], d5=ip[3]
70 ;transpose d2, d3, d4, d5. Then, d2=ip[0], d3=ip[4], d4=ip[8], d5=ip[12]
  /external/zlib/
make_vms.com 18 $ on error then goto err_exit
57 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
58 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
74 $ then
77 $ then
79 $ then
88 $ then
89 $ if f$trnlnm("SYS").eqs."" then define sys sys$library:
102 $ if fname .eqs. "#" then goto AMISS_ERR
104 $ then
    [all...]
  /development/ide/xcode/ports/
skia_mac.cp 66 // Then create a window. "MainWindow" is the name of the window object. This name is set in
  /external/icu4c/data/rbnf/
rbnffiles.mk 11 # Then, you can have your local changes remain even if you upgrade or
  /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/webkit/LayoutTests/dom/html/level1/core/
hc_nodecommentnodeattributes.js 82 and assert that Node.attributes is null. Then create
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodecommentnodeattributes.js 82 and assert that Node.attributes is null. Then create
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentsetxmlstandalone02.js 79 Then repeat this by setting it to true.

Completed in 187 milliseconds

1 2 3