Home
last modified time | relevance | path

Searched refs:Then (Results 1 – 25 of 473) sorted by relevance

12345678910>>...19

/external/chromium_org/chrome/common/extensions/docs/server2/
Dfuture_test.py190 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 …]
Dcontent_provider.py137 .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))
Dapi_list_data_source.py52 .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)
Dgitiles_file_system.py115 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)
Downers_data_source.py91 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)
Dcompiled_file_system.py210 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_)
Dcaching_file_system.py68 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)
Dfeatures_bundle.py379 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/
Dmakevms.com65 $ 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/
Dno-preheader-test.ll5 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/
Dmakevms.com20 $ 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/
DMeta.h22 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/
DREADME.txt23 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/
Dcode-stubs-hydrogen.cc213 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/
Dlibxt_nfacct.man15 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/
Dcontrol-builders.cc18 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/
DMeta.h28 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/
Dtoy.cpp145 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/
Dsampler.rst36 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/
Dsampler.rst36 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/
Dtoy.cpp160 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/
Dwhitespace_file.txt5 Then, backed away.
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/
DREADME8 Then read document by:
/external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
Dtoken.ml18 | If | Then | Else Constructor
/external/zlib/src/
Dmake_vms.com74 $ 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

12345678910>>...19