HomeSort by relevance Sort by last modified time
    Searched full:future (Results 501 - 525 of 6981) sorted by null

<<21222324252627282930>>

  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleDateRule.java 18 * @provisional This API might change or be removed in a future release.
28 * @provisional This API might change or be removed in a future release.
56 * @provisional This API might change or be removed in a future release.
76 * @provisional This API might change or be removed in a future release.
96 * @provisional This API might change or be removed in a future release.
114 * @provisional This API might change or be removed in a future release.
138 * @provisional This API might change or be removed in a future release.
216 * @provisional This API might change or be removed in a future release.
  /external/libcxx/test/std/thread/futures/futures.errors/
default_error_condition.pass.cpp 12 // <future>
18 #include <future>
  /external/libcxx/test/std/thread/futures/futures.future_error/
code.pass.cpp 12 // <future>
18 #include <future>
  /external/libcxx/test/std/thread/futures/futures.promise/
uses_allocator.pass.cpp 12 // <future>
20 #include <future>
  /external/libcxx/test/std/thread/futures/futures.tas/futures.task.members/
ctor2.fail.cpp 10 // <future>
18 #include <future>
  /external/parameter-framework/upstream/remote-processor/
BackgroundRemoteProcessorServer.h 33 #include <future>
55 std::future<bool> mServerSuccess;
  /frameworks/wilhelm/src/
attr.h 33 #define ATTR_INDEX_UNUSED6 6 // reserved for future use
34 #define ATTR_INDEX_UNUSED7 7 // reserved for future use
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.future_error/
code.pass.cpp 10 // <future>
16 #include <future>
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/futures/futures.tas/futures.task.members/
ctor2.fail.cpp 10 // <future>
18 #include <future>
  /prebuilts/go/darwin-x86/doc/
go1compat.html 2 "Title": "Go 1 and the Future of Go Programs",
26 continue to work even as future "point" releases of Go 1 arise (Go
47 no future change will break any program. This document is an attempt
49 future. There are a number of ways in which a program that compiles
50 and runs today may fail to do so after a future point release. They
65 may break in future releases.
113 imported package in future releases may conflict with other names
116 to compile in future releases.
  /prebuilts/go/linux-x86/doc/
go1compat.html 2 "Title": "Go 1 and the Future of Go Programs",
26 continue to work even as future "point" releases of Go 1 arise (Go
47 no future change will break any program. This document is an attempt
49 future. There are a number of ways in which a program that compiles
50 and runs today may fail to do so after a future point release. They
65 may break in future releases.
113 imported package in future releases may conflict with other names
116 to compile in future releases.
  /external/caliper/lib/
jersey-client-1.11.jar 
  /external/bzip2/
unzcrash.c 56 ,"???" /* for future */
57 ,"???" /* for future */
58 ,"???" /* for future */
59 ,"???" /* for future */
60 ,"???" /* for future */
61 ,"???" /* for future */
  /external/guava/guava/src/com/google/common/util/concurrent/
WrappingExecutorService.java 30 import java.util.concurrent.Future;
99 public final <T> Future<T> submit(Callable<T> task) {
104 public final Future<?> submit(Runnable task) {
109 public final <T> Future<T> submit(Runnable task, T result) {
114 public final <T> List<Future<T>> invokeAll(
120 public final <T> List<Future<T>> invokeAll(
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
WrappingScheduledExecutorServiceTest.java 26 import java.util.concurrent.Future;
169 public <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks)
175 public <T> List<Future<T>> invokeAll(
214 public <T> Future<T> submit(Callable<T> task) {
219 public Future<?> submit(Runnable task) {
224 public <T> Future<T> submit(Runnable task, T result) {
  /external/libcxx/test/std/thread/futures/futures.unique_future/
wait_until.pass.cpp 12 // <future>
14 // class future<R>
20 #include <future>
69 std::future<T> f = p.get_future();
90 std::future<T> f = p.get_future();
111 std::future<T> f = p.get_future();
  /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/Gallery2/src/com/android/gallery3d/data/
LocalAlbumSet.java 27 import com.android.gallery3d.util.Future;
58 private Future<ArrayList<MediaSet>> mLoadTask;
184 public synchronized void onFutureDone(Future<ArrayList<MediaSet>> future) {
185 if (mLoadTask != future) return; // ignore, wait for the latest task
186 mLoadBuffer = future.get();
  /frameworks/base/core/tests/coretests/src/android/animation/
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...]
  /external/guava/guava-testlib/src/com/google/common/testing/
GcFinalization.java 27 import java.util.concurrent.Future;
125 * Waits until the given future {@linkplain Future#isDone is done}, invoking the garbage
130 public static void awaitDone(Future<?> future) {
131 if (future.isDone()) {
138 if (future.isDone()) {
143 future.get(1L, SECONDS);
150 throw new RuntimeException("Unexpected interrupt while waiting for future", ie);
156 String.format("Future not done within %d second timeout", timeoutSeconds))
    [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/kernel-headers/original/uapi/linux/
dqblk_xfs.h 67 __s32 d_padding2; /* padding2 - for future use */
73 __s16 d_padding3; /* padding3 - for future use */
154 __s8 qs_version; /* version number for future changes */
174 * future expansions, and ability to expand for future without creating any
198 __s8 qs_version; /* version for future changes */
210 __u64 qs_pad2[8]; /* for future proofing */
  /hardware/intel/common/libva/va/vendor/intel/
va_intel_statistics.h 66 * Each 16x16 block has a pair of MVs, one for past and one for future reference
88 /** \brief indicate if future or/and past MV in mv_predictor buffer is valid.
91 * 2: MV predictor enabled for future reference
92 * 3: MV predictor enabled for both past and future references
113 * Motion vector output is per 4x4 block. For each 4x4 block there is a pair of past and future
116 * If only past reference is used, future MV should be ignored, and vice versa.
144 /** \brief future reference */
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadPoolExecutorSubclassTest.java 24 import java.util.concurrent.Future;
1436 Future<String> future = e.submit(new StringTask()); local
1451 Future<?> future = e.submit(new NoOpRunnable()); local
1466 Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING); local
    [all...]
ThreadPoolExecutorTest.java 25 import java.util.concurrent.Future;
1443 Future<String> future = e.submit(new StringTask()); local
1458 Future<?> future = e.submit(new NoOpRunnable()); local
1473 Future<String> future = e.submit(new NoOpRunnable(), TEST_STRING); local
    [all...]

Completed in 1301 milliseconds

<<21222324252627282930>>