HomeSort by relevance Sort by last modified time
    Searched refs:future (Results 251 - 275 of 586) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi-v7a/include/bits/
stdc++.h 103 #include <future>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips/include/bits/
stdc++.h 103 #include <future>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/include/bits/
stdc++.h 103 #include <future>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
stdc++.h 103 #include <future>
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
stdc++.h 103 #include <future>
  /frameworks/base/core/tests/coretests/src/android/animation/
ViewPropertyAnimatorTest.java 39 * AbstractFuture mechanism and a delayed action to release that Future later.
67 public Canceler(ViewPropertyAnimator anim, FutureWaiter future) {
69 mFuture = future;
89 * Releases the given Future object when the listener's end() event is called. Specifically,
96 public FutureReleaseListener(FutureWaiter future) {
97 mFuture = future;
102 * @param future
105 public FutureReleaseListener(FutureWaiter future, long timeout) {
106 mFuture = future;
EventsTest.java 37 * AbstractFuture mechanism and a delayed action to release that Future later.
68 public Canceler(Animator anim, FutureWaiter future) {
70 mFuture = future;
96 public Ender(Animator anim, FutureWaiter future) {
98 mFuture = future;
117 public Pauser(Animator anim, FutureWaiter future) {
119 mFuture = future;
138 public Resumer(Animator anim, FutureWaiter future) {
140 mFuture = future;
153 * Releases the given Future object when the listener's end() event is called. Specifically
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SinglePhotoDataAdapter.java 35 import com.android.gallery3d.util.Future;
48 private Future<?> mTask;
70 onDecodeThumbComplete((Future<Bitmap>) message.obj);
90 public void onFutureDone(Future<BitmapRegionDecoder> future) {
91 BitmapRegionDecoder decoder = future.get();
107 public void onFutureDone(Future<Bitmap> future) {
109 mHandler.obtainMessage(MSG_UPDATE_IMAGE, future));
134 private void onDecodeThumbComplete(Future<Bitmap> future)
    [all...]
  /development/apps/Development/src/com/android/development/
AccountsTester.java 271 public void run(AccountManagerFuture<Boolean> future) {
273 Log.d(TAG, "removeAccount(" + account + ") = " + future.getResult());
404 public void run(AccountManagerFuture<Bundle> future) {
409 Bundle result = future.getResult();
441 public void run(AccountManagerFuture<Bundle> future) {
445 getAndLogResult(future, "get auth token");
456 public void run(AccountManagerFuture<Bundle> future) {
457 Bundle result = getAndLogResult(future, "get and invalidate");
472 public void run(AccountManagerFuture<Boolean> future) {
474 Boolean hasFeatures = future.getResult()
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/server2/
manifest_data_source.py 9 from future import Future
121 return Future(callback=resolve)
127 return dict((platform, future.Get())
128 for platform, future in manifest_data_futures.iteritems())
129 return Future(callback=resolve)
cache_chain_object_store.py 5 from future import Future
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)
chroot_file_system.py 9 from future import Future
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamTesterTest.java 43 import java.util.concurrent.Future;
117 private Future<byte[]> future; field in class:OutputStreamTesterTest.PipedOutputStreamSinkTester
124 future = executor.submit(new Callable<byte[]>() {
142 return future.get();
WriterTesterTest.java 42 import java.util.concurrent.Future;
110 private Future<char[]> future; field in class:WriterTesterTest.PipedWriterCharSinkTester
117 future = executor.submit(new Callable<char[]>() {
136 return future.get();
  /packages/apps/ContactsCommon/TestCommon/src/com/android/contacts/common/test/
IntegrationTestUtils.java 94 FutureTask<T> future = new FutureTask<T>(callable);
95 mInstrumentation.waitForIdle(future);
97 return future.get();
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accounts/
AddAccountWithTypeActivity.java 45 public void run(AccountManagerFuture<Bundle> future) {
47 Intent addAccountIntent = future.getResult()
RemoveAccountDialog.java 104 public void run(AccountManagerFuture<Boolean> future) {
109 if (!future.getResult()) {
  /external/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 10 // <future>
19 #include <future>
  /external/libcxx/test/thread/futures/futures.shared_future/
copy_assign.pass.cpp 10 // <future>
16 #include <future>
copy_ctor.pass.cpp 10 // <future>
16 #include <future>
dtor.pass.cpp 10 // <future>
16 #include <future>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.overview/
launch.pass.cpp 10 // <future>
19 #include <future>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.shared_future/
copy_assign.pass.cpp 10 // <future>
16 #include <future>
copy_ctor.pass.cpp 10 // <future>
16 #include <future>
dtor.pass.cpp 10 // <future>
16 #include <future>

Completed in 705 milliseconds

<<11121314151617181920>>