/external/libpng/contrib/pngminus/ |
D | makevms.com | 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/swiftshader/third_party/LLVM/test/Transforms/LICM/ |
D | no-preheader-test.ll | 5 br i1 %ifcond, label %Then, label %Else 6 Then: ; preds = %0 10 Loop: ; preds = %Loop, %Else, %Then 11 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
|
/external/llvm/test/Transforms/LICM/ |
D | no-preheader-test.ll | 6 br i1 %ifcond, label %Then, label %Else 7 Then: ; preds = %0 11 Loop: ; preds = %Loop, %Else, %Then 12 %j = phi i32 [ 0, %Then ], [ 12, %Else ], [ %Next, %Loop ] ; <i32> [#uses=1]
|
/external/libpng/scripts/ |
D | makevms.com | 20 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS" 21 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK" 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/bindings/python/ |
D | README.txt | 23 Then by running nosetests: 36 Then run nosetests: 45 Then open cover/index.html in your browser of choice to see the code coverage. 54 Then at any time run it to see a report:
|
/external/v8/src/compiler/ |
D | control-builders.cc | 18 void IfBuilder::Then() { builder_->NewIfTrue(); } in Then() function in v8::internal::compiler::IfBuilder 71 control_if.Then(); in BreakUnless() 81 control_if.Then(); in BreakWhen() 161 control_if.Then(); in BreakWhen() 171 control_if.Then(); in BreakUnless()
|
/external/v8/src/ |
D | code-stubs-hydrogen.cc | 211 builder.Then(); in BuildCodeUninitializedStub() 448 is_null.Then(); in BuildCodeStub() 489 has_smi_elements.Then(); in BuildCodeStub() 500 has_object_elements.Then(); in BuildCodeStub() 511 has_double_elements.Then(); in BuildCodeStub() 613 is_constructor.Then(); in BuildCodeStub() 650 empty_args.Then(); in BuildCodeStub() 677 no_receiver.Then(); in BuildCodeStub() 852 if_objecthaselements.Then(); in BuildCodeStub() 860 if_objectisarray.Then(); in BuildCodeStub() [all …]
|
/external/rmi4utils/ |
D | README | 7 Then: 10 Then run:
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 176 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon08d88ba30111::IfExprAST 179 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 181 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 334 auto Then = ParseExpression(); in ParseIfExpr() local 335 if (!Then) in ParseIfExpr() 347 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 629 Value *ThenV = Then->codegen(); in codegen()
|
/external/iptables/extensions/ |
D | libxt_nfacct.man | 15 Then, you have to attach it to the accounting object via iptables: 21 Then, you can check for the amount of traffic that the rules match:
|
/external/harfbuzz_ng/ |
D | README.python | 18 Then make sure you also have GI_TYPELIB_PATH pointing to the resulting 21 Make sure you have pygobject installed. Then check that the following
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 195 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon7d54fca40111::IfExprAST 198 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 200 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 367 auto Then = ParseExpression(); in ParseIfExpr() local 368 if (!Then) in ParseIfExpr() 380 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 740 Value *ThenV = Then->codegen(); in codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 144 ExprAST *Cond, *Then, *Else; member in IfExprAST 147 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 285 ExprAST *Then = ParseExpression(); in ParseIfExpr() local 286 if (Then == 0) return 0; in ParseIfExpr() 296 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 532 Value *ThenV = Then->Codegen(); in Codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter3/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon8315f2660111::IfExprAST 205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 387 auto Then = ParseExpression(); in ParseIfExpr() local 388 if (!Then) in ParseIfExpr() 400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 844 Value *ThenV = Then->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon9a1d10640111::IfExprAST 205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 387 auto Then = ParseExpression(); in ParseIfExpr() local 388 if (!Then) in ParseIfExpr() 400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 844 Value *ThenV = Then->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter2/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon0e9981650111::IfExprAST 205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 387 auto Then = ParseExpression(); in ParseIfExpr() local 388 if (!Then) in ParseIfExpr() 400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 844 Value *ThenV = Then->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/ |
D | toy.cpp | 203 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST 206 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 208 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 375 auto Then = ParseExpression(); in ParseIfExpr() local 376 if (!Then) in ParseIfExpr() 388 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 833 Value *ThenV = Then->codegen(); in codegen()
|
/external/mesa3d/src/gallium/docs/source/cso/ |
D | sampler.rst | 36 is odd, the coord becomes (1 - coord). Then, normal texture REPEAT is 39 coordinate is computed. Then, regular CLAMP_TO_EDGE is applied to the coord. 41 coordinate is computed. Then, regular CLAMP_TO_BORDER is applied to the 44 computed. Then, regular CLAMP is applied to the coord.
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 159 ExprAST *Cond, *Then, *Else; member in IfExprAST 162 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 313 ExprAST *Then = ParseExpression(); in ParseIfExpr() local 314 if (Then == 0) return 0; in ParseIfExpr() 324 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 636 Value *ThenV = Then->Codegen(); in Codegen()
|
/external/mockito/src/main/java/org/mockito/ |
D | BDDMockito.java | 214 public static <T> Then<T> then(T mock) { in then() 225 public interface Then<T> { interface in BDDMockito 264 private static class ThenImpl<T> implements Then<T> {
|
/external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/ |
D | toy.cpp | 218 std::unique_ptr<ExprAST> Cond, Then, Else; member in IfExprAST 221 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 223 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 390 auto Then = ParseExpression(); in ParseIfExpr() local 391 if (!Then) in ParseIfExpr() 403 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 855 Value *ThenV = Then->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 199 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anon664ddea60111::IfExprAST 202 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 204 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 384 auto Then = ParseExpression(); in ParseIfExpr() local 385 if (!Then) in ParseIfExpr() 397 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 840 Value *ThenV = Then->codegen(); in codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 202 std::unique_ptr<ExprAST> Cond, Then, Else; member in __anonf1d16da50111::IfExprAST 205 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, in IfExprAST() argument 207 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} in IfExprAST() 387 auto Then = ParseExpression(); in ParseIfExpr() local 388 if (!Then) in ParseIfExpr() 400 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), in ParseIfExpr() 845 Value *ThenV = Then->codegen(); in codegen()
|
/external/eigen/doc/ |
D | CustomizingEigen_NullaryExpr.dox | 38 Then, the CwiseNullaryOp object is constructed through the DenseBase::NullaryExpr static method wit… 40 Then, we need to implement our \c circulant_functor, which is a straightforward exercise: 67 Then, let's create an \c indexing(A,rows,cols) function creating the nullary expression:
|
/external/llvm/docs/tutorial/ |
D | LangImpl05.rst | 21 If/Then/Else 60 Lexer Extensions for If/Then/Else 91 AST Extensions for If/Then/Else 100 std::unique_ptr<ExprAST> Cond, Then, Else; 103 IfExprAST(std::unique_ptr<ExprAST> Cond, std::unique_ptr<ExprAST> Then, 105 : Cond(std::move(Cond)), Then(std::move(Then)), Else(std::move(Else)) {} 111 Parser Extensions for If/Then/Else 133 auto Then = ParseExpression(); 134 if (!Then) 146 return llvm::make_unique<IfExprAST>(std::move(Cond), std::move(Then), [all …]
|