Searched defs:Future (Results 1 - 25 of 55) sorted by relevance

123

/external/chromium_org/chrome/common/extensions/docs/server2/
H A Dcache_chain_object_store.py5 from future import Future namespace
43 return Future(value=cached_items)
50 # Don't realise the Future value of an object store that we don't need to;
75 return Future(callback=resolve)
H A Dempty_dir_file_system.py6 from future import Future namespace
21 return Future(value=result)
24 return Future(value=())
H A Dobject_store.py5 from future import Future namespace
12 '''Gets a |Future| with the value of |key| in the object store, or None
18 '''Gets a |Future| with values mapped to |keys| from the object store, with
H A Doffline_file_system.py6 from future import Future namespace
17 if skip_not_found: return Future(value={})
20 return Future(callback=raise_file_not_found)
H A Dtest_object_store.py5 from future import Future namespace
32 return Future(callback=callback)
H A Dtest_patcher.py5 from future import Future namespace
29 return Future(value=dict((path, self._patch_data[path])
H A Dappengine_url_fetcher.py12 from future import Future namespace
51 """Fetches a file asynchronously, and returns a Future with the result.
71 return Future(callback=lambda: process_result(rpc.get_result()))
H A Dchained_compiled_file_system.py8 from future import Future namespace
91 return Future(callback=resolve)
H A Dchroot_file_system.py9 from future import Future namespace
H A Dfuture.py17 '''Creates a Future which returns a list of results from each Future in
20 If any Future raises an error other than those in |except_pass| the returned
21 Future will raise as well.
23 If any Future raises an error in |except_pass| then None will be inserted as
38 return Future(callback=resolve)
42 '''Returns a Future which resolves to the first Future in |futures| that
64 return Future(callback=resolve)
67 class Future(objec class in inherits:object
[all...]
H A Dpath_canonicalizer.py8 from future import Future namespace
H A Dpersistent_object_store.py8 from future import Future namespace
37 return Future(callback=resolve)
H A Drietveld_patcher.py10 from future import Future namespace
H A Dsamples_data_source.py10 from future import All, Future namespace
H A Dapi_data_source.py11 from future import Future, All namespace
44 self._event_byname_futures[platform] = Future(
68 return Future(callback=resolve)
84 return Future(callback=resolve)
H A Dapi_list_data_source.py6 from future import Future namespace
H A Dcaching_rietveld_patcher.py7 from future import Future namespace
104 return Future(value=cached_value)
H A Dmanifest_data_source_test.py10 from future import Future namespace
284 return Future(value=manifest_features)
H A Dpatched_file_system.py8 from future import Future namespace
24 return Future(callback=raise_file_not_found)
H A Dpermissions_data_source.py10 from future import Future namespace
74 return Future(callback=resolve)
84 return Future(callback=resolve)
H A Dreference_resolver_test.py9 from future import Future namespace
268 return Future(value=Namespace(self._apis[name], 'fake/path.json'))
H A Dschema_processor_test.py10 from future import Future namespace
25 return Future(value={})
H A Dsidenav_data_source.py12 from future import Future namespace
H A Dwhats_new_data_source.py11 from future import Future namespace
87 return Future(callback=resolve)
/external/clang/test/SemaCXX/
H A Ddecltype.cpp20 struct Future { struct
21 explicit Future(T v);
36 Future<int> f1(42);
37 f1.call([](int){ return Future<float>(0); });

Completed in 166 milliseconds

123