/external/chromium_org/chrome/common/extensions/docs/server2/ |
D | future_test.py | 190 then = Future(value=42).Then(assertIs42) 195 then = Future(value=41).Then(assertIs42) 210 then = Future(callback=raiseValueError).Then(assertIs42, handle) 212 then = Future(callback=raiseException).Then(assertIs42, handle) 217 then = Future(value=40).Then(addOne).Then(addOne).Then(assertIs42) 222 then = Future(value=40).Then(addOne).Then(assertIs42).Then(addOne) 229 then = Future(value=40).Then(addOne).Then(raiseValueErrorWithVal).Then( 230 addOne, handle).Then(lambda val: val + ' me') 239 then = Future(value=40).Then(assertIs42).Then(addOne, handle).Then(addOne, 251 self.assertEqual(43, returnsFortyTwo().Then(inc).Get()) [all …]
|
D | content_provider.py | 137 .Then(lambda zipped: ContentAndType(zipped, 140 return self._FindFileForPath(path).Then(self._content_cache.GetFromFile) 150 stat_future = self._FindFileForPath(path).Then(self.file_system.StatAsync) 151 return stat_future.Then(lambda stat: stat.version) 178 .Then(get_first_path_which_exists)) 189 .Then(get_index_if_directory_exists)) 195 .Then(lambda found: found or find_index_file()) 196 .Then(lambda found: found or path))
|
D | api_list_data_source.py | 52 .Then(convert_to_list)) 107 return make_list_for_content_scripts().Then(make_api_dict) 115 return self._GenerateAPIDict().Then(persist_and_return) 117 return self._object_store.Get('api_data').Then(return_or_generate)
|
D | gitiles_file_system.py | 115 return fetch_future.Then(get_content, handle) 158 for path, future in fetches).Then(parse_contents) 198 return content_future.Then(lambda json: _ParseGitilesJson(json)[key]) 208 return self._GetCommitInfo('parents').Then(lambda parents: parents[0]) 224 return self._ResolveFetchContent(path, fetch_future).Then(stat)
|
D | owners_data_source.py | 91 api_owners.append(self._owners_fs.GetFromFile(owners_file).Then( 97 return All(api_owners).Then(sort_and_cache) 98 return self._cache.Get('api_owners').Then(collect)
|
D | compiled_file_system.py | 210 files += self._file_system.Read(dirs).Then( 214 return self._file_system.Read(add_prefix(path, first_layer_dirs)).Then( 241 path, skip_not_found=skip_not_found).Then(compile_) 262 return self._RecursiveList(path).Then(compile_)
|
D | caching_file_system.py | 68 return self._MemoizedStatAsyncFromFileSystem(dir_path).Then(next) 104 stat_future = stat_future.Then(lambda x: x, handle) 142 skip_not_found=skip_not_found).Then(next)
|
D | features_bundle.py | 379 return All(futures).Then(resolve) 380 return All(dependency_futures).Then(load_features) 381 return self._object_store.Get(features_type).Then(next_)
|
/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/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/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/eigen/Eigen/src/Eigen2Support/ |
D | 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/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/chromium_org/v8/src/ |
D | code-stubs-hydrogen.cc | 213 builder.Then(); in BuildCodeUninitializedStub() 293 if_number.Then(); in BuildCodeStub() 346 checker.Then(); in BuildCodeStub() 357 zero_capacity.Then(); in BuildCodeStub() 364 if_fixed_cow.Then(); in BuildCodeStub() 372 if_fixed.Then(); in BuildCodeStub() 433 checker.Then(); in BuildCodeStub() 618 in_unmapped_range.Then(); in UnmappedCase() 675 in_range.Then(); in BuildCodeStub() 685 is_valid.Then(); in BuildCodeStub() [all …]
|
/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/chromium_org/v8/src/compiler/ |
D | control-builders.cc | 18 void IfBuilder::Then() { builder_->NewIfTrue(); } in Then() function in v8::internal::compiler::IfBuilder 70 control_if.Then(); in BreakUnless()
|
/external/eigen/Eigen/src/Core/util/ |
D | 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; };
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 145 ExprAST *Cond, *Then, *Else; member in __anonfb7718fa0111::IfExprAST 148 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 287 ExprAST *Then = ParseExpression(); in ParseIfExpr() local 288 if (Then == 0) return 0; in ParseIfExpr() 298 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 534 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/chromium_org/third_party/mesa/src/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/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 160 ExprAST *Cond, *Then, *Else; member in __anon6ff389fb0111::IfExprAST 163 : Cond(cond), Then(then), Else(_else) {} in IfExprAST() 315 ExprAST *Then = ParseExpression(); in ParseIfExpr() local 316 if (Then == 0) return 0; in ParseIfExpr() 326 return new IfExprAST(Cond, Then, Else); in ParseIfExpr() 638 Value *ThenV = Then->Codegen(); in Codegen()
|
/external/chromium_org/third_party/WebKit/Tools/ |
D | whitespace_file.txt | 5 Then, backed away.
|
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/ |
D | README | 8 Then read document by:
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/ |
D | token.ml | 18 | If | Then | Else Constructor
|
/external/zlib/src/ |
D | make_vms.com | 74 $ If F$Search ("Sys$System:MMS.EXE") .nes. "" Then Make = "MMS" 75 $ If F$Type (MMK) .eqs. "STRING" Then Make = "MMK" 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
|