HomeSort by relevance Sort by last modified time
    Searched refs:future (Results 26 - 50 of 160) sorted by null

12 3 4 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/backward/
backward_warning.h 35 may be removed without further notice at a future date. Please use a \
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 30 may be removed without further notice at a future date. Please use a \
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 30 may be removed without further notice at a future date. Please use a \
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/gnu-libstdc++/include/backward/
backward_warning.h 30 may be removed without further notice at a future date. Please use a \
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractListeningExecutorServiceTest.java 29 import java.util.concurrent.Future;
61 Future<?> future = e.submit(task); local
62 future.get();
71 Future<String> future = e.submit(new StringTask()); local
72 String result = future.get();
81 Future<?> future = e.submit(new NoOpRunnable()); local
82 future.get()
91 Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING); local
    [all...]
  /build/core/combo/arch/arm/
armv5te.mk 12 # and a better solution should be found in the future.
armv7-a-neon.mk 17 # and a better solution should be found in the future.
armv7-a.mk 15 # and a better solution should be found in the future.
armv4t.mk 21 # and a better solution should be found in the future.
  /external/guava/guava/src/com/google/common/util/concurrent/
SimpleTimeLimiter.java 35 import java.util.concurrent.Future;
126 Future<T> future = executor.submit(callable); local
130 return future.get(timeoutDuration, timeoutUnit);
132 future.cancel(true);
136 return Uninterruptibles.getUninterruptibly(future,
142 future.cancel(true);
Uninterruptibles.java 27 import java.util.concurrent.Future;
118 * Invokes {@code future.}{@link Future#get() get()} uninterruptibly.
123 * with other exceptions, see {@link Futures#get(Future, Class) Futures.get}
126 public static <V> V getUninterruptibly(Future<V> future)
132 return future.get();
146 * {@code future.}{@link Future#get(long, TimeUnit) get(timeout, unit)}
150 * with other exceptions, see {@link Futures#get(Future, Class) Futures.get
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/util/
AccountPromptUtils.java 107 public void run(AccountManagerFuture<Bundle> future) {
108 if (future.isCancelled()) {
114 Bundle result = future.getResult();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
DetailsAddressResolver.java 26 import com.android.gallery3d.util.Future;
36 private Future<Address> mAddressLookupJob;
66 public void onFutureDone(final Future<Address> future) {
68 if (!future.isCancelled()) {
71 updateLocation(future.get());
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/i686-linux/bits/
stdc++.h 103 #include <future>
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/x86_64-linux/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 36 * AbstractFuture mechanism and a delayed action to release that Future later.
64 public Canceler(Animator anim, FutureWaiter future) {
66 mFuture = future;
92 public Ender(Animator anim, FutureWaiter future) {
94 mFuture = future;
107 * Releases the given Future object when the listener's end() event is called. Specifically,
114 public FutureReleaseListener(FutureWaiter future) {
115 mFuture = future;
120 * @param future
123 public FutureReleaseListener(FutureWaiter future, long timeout)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
SinglePhotoDataAdapter.java 34 import com.android.gallery3d.util.Future;
47 private Future<?> mTask;
68 onDecodeThumbComplete((Future<Bitmap>) message.obj);
87 public void onFutureDone(Future<BitmapRegionDecoder> future) {
88 BitmapRegionDecoder decoder = future.get();
103 public void onFutureDone(Future<Bitmap> future) {
105 mHandler.obtainMessage(MSG_UPDATE_IMAGE, future));
124 private void onDecodeThumbComplete(Future<Bitmap> future)
    [all...]
  /sdk/emulator/qtools/
trace_reader.cpp 74 inline BBReader::Future *BBReader::AllocFuture()
76 Future *future = free_; local
78 return future;
81 inline void BBReader::FreeFuture(Future *future)
83 future->next = free_;
84 free_ = future;
87 inline void BBReader::InsertFuture(Future *future)
197 Future *future = head_; local
222 Future *future = AllocFuture(); local
245 Future *future = head_; local
    [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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
OutputStreamTesterTest.java 43 import java.util.concurrent.Future;
116 private Future<byte[]> future; field in class:OutputStreamTesterTest.PipedOutputStreamSinkTester
123 future = executor.submit(new Callable<byte[]>() {
140 return future.get();
WriterTesterTest.java 42 import java.util.concurrent.Future;
105 private Future<char[]> future; field in class:WriterTesterTest.PipedWriterCharSinkTester
112 future = executor.submit(new Callable<char[]>() {
129 return future.get();
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
IntegrationTestUtils.java 94 FutureTask<T> future = new FutureTask<T>(callable);
95 mInstrumentation.waitForIdle(future);
97 return future.get();
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpDeviceSet.java 26 import com.android.gallery3d.util.Future;
47 private Future<ArrayList<MediaSet>> mLoadTask;
140 public synchronized void onFutureDone(Future<ArrayList<MediaSet>> future) {
141 if (future != mLoadTask) return;
142 mLoadBuffer = future.get();
  /packages/apps/Settings/src/com/android/settings/accounts/
AddAccountSettings.java 69 public void run(AccountManagerFuture<Bundle> future) {
71 Bundle bundle = future.getResult();

Completed in 650 milliseconds

12 3 4 5 6 7