HomeSort by relevance Sort by last modified time
    Searched defs:Future (Results 26 - 50 of 63) sorted by null

12 3

  /external/chromium_org/chrome/common/extensions/docs/server2/
patched_file_system.py 8 from future import Future
48 return Future(callback=raise_file_not_found)
54 return Future(callback=_GetAsyncFetchCallback(
permissions_data_source.py 11 from future import Future
77 return Future(callback=resolve)
sidenav_data_source.py 12 from future import Future
whats_new_data_source.py 11 from future import Future
88 return Future(callback=resolve)
caching_file_system.py 9 from future import Future
64 return Future(value=make_stat_info(dir_stat))
73 return Future(callback=resolve)
92 # been cached in which case their Future will already have been constructed
96 def swallow_file_not_found_error(future):
98 try: return future.Get()
100 return Future(callback=resolve)
109 stat_future = Future(value=stat_value)
121 return Future(value=fresh_data
    [all...]
content_provider.py 14 from future import Future
140 return Future(callback=
173 # no path associated with this Future.
186 for label, future in futures:
187 try: future.Get()
189 return Future(callback=resolve)
content_providers.py 13 from future import Future
180 return Future(callback=
features_bundle.py 11 from future import Future
89 return Future(value={})
125 return Future(value=api_features)
143 return Future(callback=resolve)
file_system.py 8 from future import Future
22 return Future(callback=boom)
80 guaranteed to only happen once the Future has been resolved (Get()
88 '''Reads a single file from the FileSystem. Returns a Future with the same
93 return Future(callback=lambda: read_single.Get()[path])
96 '''Returns a Future to the existence of |path|; True if |path| exists,
106 return Future(value=True)
115 return Future(callback=resolve)
119 future to its completion
    [all...]
gcs_file_system.py 11 from future import Future
99 return Future(callback=resolve)
102 return Future(value=())
local_file_system.py 10 from future import Future
93 return Future(callback=resolve)
96 return Future(value=())
manifest_data_source.py 10 from future import Future
125 return Future(callback=resolve)
mock_file_system.py 8 from future import Future
54 return Future(callback=resolve)
subversion_file_system.py 15 from future import Future
109 # A list of tuples of the form (path, Future).
114 for path, future in fetches:
116 result = future.Get()
163 return Future(callback=_GetAsyncFetchCallback(
170 return Future(value=())
207 return Future(callback=resolve)
test_file_system.py 6 from future import Future
123 return Future(value=dict((k, v) for k, v in self._path_values.iteritems()
127 return Future(value=())
api_data_source_test.py 20 from future import Future
55 return Future(value='handlebar %s' % key)
compiled_file_system.py 10 from future import Future
149 '''Returns a Future containing the recursive directory listing of |path| as
165 # asynchronous Future contract) because there's a greater chance to
171 return Future(exc_info=sys.exc_info())
174 return Future(value=first_layer_files)
201 return Future(callback=resolve)
214 return Future(exc_info=sys.exc_info())
218 return Future(value=cache_entry._cache_data)
225 return Future(callback=resolve
    [all...]
github_file_system.py 15 from future import Future
100 self._zip_file = Future(value=None)
104 self._zip_file = Future(value=ZipFile(StringIO(blob)))
108 self._zip_file = Future(value=None)
110 self._zip_file = Future(
159 return Future(value=result)
new_github_file_system.py 17 from future import Future
144 will be set to a Future of _GithubZipFile and the fetch process started,
154 '''Returns a Future which resolves to the _GithubZipFile for this repo
172 return Future(value=repo_zip)
175 '''Returns a Future which resolves to the _GithubZipFile for this repo
197 return Future(callback=resolve)
260 return Future(callback=resolve)
api_data_source.py 15 from future import Future, Collect
517 return Future(callback=resolve)
530 return Future(callback=resolve)
cron_servlet.py 17 from future import Future
171 future, init_timer = TimerClosure(target.Cron)
172 assert isinstance(future, Future), (
173 '%s.Cron() did not return a Future' % title)
177 future.Get()
189 return Future(callback=resolve)
218 for future in cron_futures:
219 future.Get(
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyTIL.h 304 // Defined after Variable and Future, below.
430 class Future : public SExpr {
440 Future() :
444 virtual ~Future() LLVM_DELETED_FUNCTION;
447 // Registers the location in the AST where this future is stored.
448 // Forcing the future will automatically update the AST.
450 if (Future *F = dyn_cast_or_null<Future>(Member->get()))
454 // A lazy rewriting strategy should subclass Future and override this method.
457 // Return the result of this future if it exists, otherwise return null
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
wdm.h     [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /prebuilts/sdk/10/
android.jar 

Completed in 689 milliseconds

12 3