Searched refs:Then (Results 1 - 25 of 61) sorted by relevance

123

/external/libpng/contrib/pngminus/
H A Dmakevms.com60 $ 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 NextEl
75 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
82 $ If arg .Le. 8 Then Goto Loop
91 $ If V Then Set Verify
/external/libpng/scripts/
H A Dmakevms.com20 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
21 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
110 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
115 $ If Argument .Eqs. "" Then Goto Exit
119 $ If File .Eqs. " " Then Goto Endl
124 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
125 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
132 $ If arg .Le. 8 Then Goto Loop
141 $ If V Then Set Verify
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
H A Dparser.ml51 'Token.Then ?? "expected 'then'"; t=parse_expr;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
H A Dparser.ml51 'Token.Then ?? "expected 'then'"; t=parse_expr;
/external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
H A Dtoken.ml18 | If | Then | Else Constructor in type:token
H A Dlexer.ml48 | "then" -> [< 'Token.Then; stream >]
/external/icu4c/data/translit/
H A Dtrnsfiles.mk10 # Then, you can have your local changes remain even if you upgrade or re
/external/icu4c/data/misc/
H A Dmiscfiles.mk10 # Then, you can have your local changes remain even if you upgrade or re-
/external/icu4c/data/sprep/
H A Dsprepfiles.mk10 # Then, you can have your local changes remain even if you upgrade or
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp144 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
147 : Cond(cond), Then(then), Else(_else) {}
285 ExprAST *Then = ParseExpression(); local
286 if (Then == 0) return 0;
296 return new IfExprAST(Cond, Then, Else);
532 Value *ThenV = Then->Codegen();
536 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp159 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
162 : Cond(cond), Then(then), Else(_else) {}
313 ExprAST *Then = ParseExpression(); local
314 if (Then == 0) return 0;
324 return new IfExprAST(Cond, Then, Else);
636 Value *ThenV = Then->Codegen();
640 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/webkit/Tools/Scripts/
H A Dupdate-webkit-support-libs144 Then run build-webkit again.
/external/icu4c/data/brkitr/
H A Dbrkfiles.mk11 # Then, you can have your local changes remain even if you upgrade or
/external/libpng/contrib/gregbook/
H A Dmakevms.com100 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
105 $ If Argument .Eqs. "" Then Goto Exit
109 $ If File .Eqs. " " Then Goto Endl
114 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
115 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
122 $ If arg .Le. 8 Then Goto Loop
131 $ If V Then Set Verify
/external/libvpx/vp8/encoder/arm/neon/
H A Dfastfdct8x4_neon.asm39 ;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]
H A Dfastfdct4x4_neon.asm39 ;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/src/
H A Dmake_vms.com74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS"
75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK"
263 $ If F$Search(P1) .Eqs. "" Then Goto Makeit
268 $ If Argument .Eqs. "" Then Goto Exit
272 $ If File .Eqs. " " Then Goto Endl
277 $ If AFile .Eqs. "" .Or. AFile .Eqs. OFile Then Goto NextEl
278 $ If F$CvTime(F$File(AFile,"RDT")) .Ges. Time Then Goto Makeit
285 $ If arg .Le. 8 Then Goto Loop
294 $ If V Then Set Verify
/external/icu4c/data/rbnf/
H A Drbnffiles.mk11 # Then, you can have your local changes remain even if you upgrade or
/external/llvm/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp164 ExprAST *Cond, *Then, *Else; member in class:IfExprAST
167 : Cond(cond), Then(then), Else(_else) {}
331 ExprAST *Then = ParseExpression(); local
332 if (Then == 0) return 0;
342 return new IfExprAST(Cond, Then, Else);
732 Value *ThenV = Then->Codegen();
736 // Codegen of 'Then' can change the current block, update ThenBB for the PHI.
/external/llvm/utils/
H A Dcodegen-diff101 the function you want is compiled. Then use the B<disassemble> command
/external/icu4c/data/mappings/
H A Ducmfiles.mk10 # Then, you can have your local changes remain even if you upgrade or re

Completed in 1560 milliseconds

123