/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractFuture.java | 43 * #cancel(boolean) cancel(true)} succeeds in canceling the future. 49 * failure in changing the future's state. Valid states are running, 53 * listeners will be executed, either when the future finishes or, for listeners 54 * that are added after the future completes, immediately. 57 * listener is added after the Future is complete, it will be executed 143 * future's computation. The method is invoked automatically by a successful 154 * Returns true if this future was cancelled with {@code 175 * to {@code value}. This will set the state of the future to 192 * to an error, {@code throwable}. This will set the state of the future to 211 * in a thread-safe manner. The current state of the future is held in th [all...] |
AbstractScheduledService.java | 29 import java.util.concurrent.Future; 125 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor, 144 public Future<?> schedule(AbstractService service, ScheduledExecutorService executor, 152 abstract Future<?> schedule(AbstractService service, ScheduledExecutorService executor, 163 private volatile Future<?> runningTask; 424 /** The future that represents the next execution of this task.*/ 426 private Future<Void> currentFuture; 443 * Atomically reschedules this task and assigns the new future to {@link #currentFuture}. 447 // cancel calls cancel on the correct future. 2. we want to make sure that the assignment 459 // because the service does not monitor the state of the future so if the exception is no [all...] |
ListeningExecutorService.java | 23 import java.util.concurrent.Future; 74 <T> List<Future<T>> invokeAll(Collection<? extends Callable<T>> tasks) 95 <T> List<Future<T>> invokeAll(
|
/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;
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/services/ |
FileOperationService.java | 67 // but in the future those files may be from multiple different parents. In 178 ScheduledFuture<?> future = executor.schedule(job, delay, TimeUnit.MILLISECONDS); local 179 mRunning.put(jobId, new JobRecord(job, future)); 207 if (record.future.getDelay(TimeUnit.MILLISECONDS) > 0) { 208 record.future.cancel(false); 336 private final ScheduledFuture<?> future; field in class:FileOperationService.JobRecord 338 public JobRecord(Job job, ScheduledFuture<?> future) { 340 this.future = future;
|
/external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/ |
SameThreadScheduledExecutorService.java | 34 import java.util.concurrent.Future; 100 public <T> List<Future<T>> invokeAll( 107 public <T> List<Future<T>> invokeAll( 151 protected ImmediateScheduledFuture(ListenableFuture<V> future) { 152 super(future);
|
/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/icu/android_icu4j/src/main/java/android/icu/impl/duration/ |
BasicPeriodFormatterFactory.java | 32 * or 'from now' will be displayed to indicate past or future 111 * Set whether past and future will be displayed. 113 * @param display true if past and future will be displayed 122 * Return true if past and future will be displayed. 124 * @return true if past and future will be displayed
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/duration/ |
BasicPeriodFormatterFactory.java | 31 * or 'from now' will be displayed to indicate past or future 109 * Set whether past and future will be displayed. 111 * @param display true if past and future will be displayed 120 * Return true if past and future will be displayed. 122 * @return true if past and future will be displayed
|
/external/llvm/include/llvm/Support/ |
ThreadPool.h | 24 // Disable warnings from ppltasks.h transitively included by <future>. 30 #include <future> 74 /// Asynchronous submission of a task to the pool. The returned future can be 92 /// Asynchronous submission of a task to the pool. The returned future can be 108 /// Asynchronous submission of a task to the pool. The returned future can be
|
/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();
|
/libcore/support/src/test/java/tests/support/ |
Support_Exec.java | 33 import java.util.concurrent.Future; 87 Future<String> errFuture = executorService.submit( 89 Future<String> outFuture = executorService.submit( 127 Future<String> errFuture = 129 Future<String> outFuture =
|
/system/bt/btcore/src/ |
module.c | 160 future_t *future = function(); 162 // A NULL future means synchronous success 163 if (!future) 166 // Otherwise fall back to the future 167 return future_await(future);
|
/external/conscrypt/src/test/java/org/conscrypt/ |
NativeCryptoTest.java | 49 import java.util.concurrent.Future; 942 Future<TestSSLHandshakeCallbacks> future = executor.submit( local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/ |
RSAESOAEPparams.java | 121 * ... -- Allows for future expansion -- 125 * ... -- Allows for future expansion -- 129 * ... -- Allows for future expansion --
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
UFormat.java | 20 * @provisional This API might change or be removed in a future release. 27 * @provisional This API might change or be removed in a future release. 53 // * @provisional This API might change or be removed in a future release.
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
LocaleDisplayNames.java | 270 * @provisional This API might change or be removed in a future release. 284 * @provisional This API might change or be removed in a future release. 291 * @provisional This API might change or be removed in a future release. 297 * @provisional This API might change or be removed in a future release. 303 * @provisional This API might change or be removed in a future release. 309 * @provisional This API might change or be removed in a future release. 315 * @provisional This API might change or be removed in a future release. 326 * @provisional This API might change or be removed in a future release. 339 * @provisional This API might change or be removed in a future release. 354 * @provisional This API might change or be removed in a future release [all...] |
ScientificNumberFormatter.java | 34 * @provisional This API might change or be removed in a future release. 50 * @provisional This API might change or be removed in a future release. 65 * @provisional This API might change or be removed in a future release. 81 * @provisional This API might change or be removed in a future release. 102 * @provisional This API might change or be removed in a future release. 119 * @provisional This API might change or be removed in a future release.
|
/external/v8/test/webkit/ |
keywords-and-reserved_words.js | 59 // Check for strict mode future reserved words. 118 // Technically these are "Future Reserved Words"! 127 // Future Reserved Words, in strict mode only.
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
sync_buffer.h | 34 // the move of the beginning of "future" data. 40 // the move of the beginning of "future" data. 41 // Note that this operation may delete future samples that are waiting to
|
/frameworks/base/services/tests/servicestests/src/com/android/server/ |
BroadcastInterceptingContext.java | 34 import java.util.concurrent.Future; 85 public Future<Intent> nextBroadcastIntent(String action) { 89 public Future<Intent> nextBroadcastIntent(IntentFilter filter) {
|
/libcore/support/src/test/java/libcore/javax/net/ssl/ |
TestSSLSocketPair.java | 23 import java.util.concurrent.Future; 80 Future s = executor.submit(new Callable<Void>() { 89 Future c = executor.submit(new Callable<Void>() {
|
/packages/apps/Camera2/src/com/android/camera/one/v2/commands/ |
CameraCommandExecutor.java | 32 import java.util.concurrent.Future; 97 * Executes the given command, returning a Future to indicate its status and 100 public Future<?> execute(CameraCommand command) {
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/ |
_functools.so | |