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

1 23 4 5 6 7

  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
cramfs_fs.h 59 __u32 future; /* reserved for future use */ member in struct:cramfs_super
81 * changed to test super.future instead.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cramfs_fs.h 59 __u32 future; /* reserved for future use */ member in struct:cramfs_super
81 * changed to test super.future instead.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
cramfs_fs.h 59 __u32 future; /* reserved for future use */ member in struct:cramfs_super
81 * changed to test super.future instead.
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractScheduledServiceTest.java 27 import java.util.concurrent.Future;
45 volatile ScheduledFuture<?> future = null; field in class:AbstractScheduledServiceTest
55 return future = super.scheduleWithFixedDelay(command, initialDelay, delay, unit);
62 assertFalse(future.isDone());
64 assertTrue(future.isCancelled());
82 future.get();
304 Future<?> future = scheduler.schedule(null, Executors.newScheduledThreadPool(10), task); local
312 future.cancel(false);
JSR166TestCase.java 290 * milliseconds in the future.
560 * Checks that future.get times out, with the default timeout of
563 void assertFutureTimesOut(Future future) {
564 assertFutureTimesOut(future, timeoutMillis());
568 * Checks that future.get times out, with the given millisecond timeout.
570 void assertFutureTimesOut(Future future, long timeoutMillis) {
573 future.get(timeoutMillis, MILLISECONDS);
578 } finally { future.cancel(true);
    [all...]
  /device/ti/panda/
device.mk 37 com.android.future.usb.accessory
56 com.android.future.usb.accessory
  /external/guava/guava-tests/test/com/google/common/collect/
ConcurrentHashMultisetBasherTest.java 33 import java.util.concurrent.Future;
72 List<Future<int[]>> futures = Lists.newArrayListWithExpectedSize(nTasks);
78 for (Future<int[]> future : futures) {
79 int[] taskDeltas = future.get();
  /external/v8/test/mjsunit/
keywords-and-reserved_words.js 28 // Test proper handling of keywords, future reserved words and
29 // future reserved words in strict mode as specific by 7.6.1 and 7.6.2
67 // Check for strict mode future reserved words.
141 // In ES5 "const" is a "future reserved word" but we treat it as a keyword.
148 // 7.6.1.2 Future Reserved Words (without "const")
161 // 7.6.1.2 Future Reserved Words, in strict mode only.
  /packages/apps/Email/tests/src/com/android/email/
AccountTestCase.java 85 AccountManagerFuture<Boolean> future = local
88 future.getResult();
  /frameworks/base/libs/usb/src/com/android/future/usb/
UsbAccessory.java 17 package com.android.future.usb;
UsbManager.java 18 package com.android.future.usb;
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 203 FutureTask<MediaPlayer> future = new FutureTask<MediaPlayer>(callable); local
204 getInstrumentation().runOnMainSync(future);
205 return future.get();
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 39 import com.android.gallery3d.util.Future;
291 private void updateScreenNail(Path path, Future<ScreenNail> future) {
293 ScreenNail screenNail = future.get();
295 if (entry == null || entry.screenNailTask != future) {
325 private void updateFullImage(Path path, Future<BitmapRegionDecoder> future) {
327 if (entry == null || entry.fullImageTask != future) {
328 BitmapRegionDecoder fullImage = future.get();
334 entry.fullImage = future.get()
    [all...]
CropImage.java 62 import com.android.gallery3d.util.Future;
148 private Future<BitmapRegionDecoder> mLoadTask;
149 private Future<Bitmap> mLoadBitmapTask;
150 private Future<Intent> mSaveTask;
540 public void onFutureDone(Future<Intent> future) {
542 if (future.isCancelled()) return;
543 Intent intent = future.get();
822 public void onFutureDone(Future<BitmapRegionDecoder> future) {
    [all...]
  /external/chromium/chrome/browser/safe_browsing/
protocol_manager_unittest.cc 115 Time future = now + TimeDelta::FromMinutes(1); local
116 EXPECT_TRUE(pm.next_gethash_time_ >= future - margin &&
117 pm.next_gethash_time_ <= future + margin);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalAlbumSet.java 33 import com.android.gallery3d.util.Future;
105 private Future<ArrayList<MediaSet>> mLoadTask;
292 public synchronized void onFutureDone(Future<ArrayList<MediaSet>> future) {
293 if (mLoadTask != future) return; // ignore, wait for the latest task
294 mLoadBuffer = future.get();
MediaSet.java 20 import com.android.gallery3d.util.Future;
231 * Requests sync on this MediaSet. It returns a Future object that can be used by the caller
233 * defined in this class and can be obtained by Future.get().
237 * The default implementation here returns a Future stub that does nothing and returns
240 public Future<Integer> requestSync(SyncListener listener) {
245 private static final Future<Integer> FUTURE_STUB = new Future<Integer>() {
268 protected Future<Integer> requestSyncOnMultipleSets(MediaSet[] sets, SyncListener listener) {
272 private class MultiSetSyncFuture implements Future<Integer>, SyncListener {
276 private final Future<Integer> mFutures[]
    [all...]
DownloadCache.java 29 import com.android.gallery3d.util.Future;
262 private Future<File> mFuture;
285 public void onFutureDone(Future<File> future) {
286 File file = future.get();
292 if (future.isCancelled()) {
  /external/chromium/chrome/common/extensions/docs/examples/api/tabs/screenshot/
screenshot.js 22 // There is nothing we need to do for future onUpdated events, so we
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 95 public void run(AccountManagerFuture<String> future) {
97 final String authTokenLabel = future.getResult();
  /frameworks/base/policy/src/com/android/internal/policy/impl/
AccountUnlockScreen.java 282 public void run(AccountManagerFuture<Bundle> future) {
285 final Bundle result = future.getResult();
  /ndk/build/core/
setup-abi.mk 31 # more general filtering in the future when introducing other ABIs.
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 251 AccountManagerFuture<Boolean> future = local
254 future.getResult();
  /packages/apps/Exchange/tests/src/com/android/exchange/
CalendarSyncEnablerTest.java 251 AccountManagerFuture<Boolean> future = local
254 future.getResult();
  /sdk/emulator/qtools/
trace_reader_base.h 172 struct Future {
173 Future *next;
177 inline Future *AllocFuture();
178 inline void FreeFuture(Future *future);
179 inline void InsertFuture(Future *future);
183 Future futures_[kMaxNumBasicBlocks];
184 Future *head_;
185 Future *free_
    [all...]

Completed in 456 milliseconds

1 23 4 5 6 7