HomeSort by relevance Sort by last modified time
    Searched refs:future (Results 101 - 125 of 1322) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.promise/
set_rvalue.pass.cpp 13 // <future>
19 #include <future>
36 std::future<T> f = p.get_future();
53 std::future<T> f = p.get_future();
set_value_const.pass.cpp 13 // <future>
19 #include <future>
38 std::future<T> f = p.get_future();
59 std::future<T> f = p.get_future();
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.task/futures.task.members/
dtor.pass.cpp 13 // <future>
19 #include <future>
48 std::future<double> f = p.get_future();
64 std::future<double> f = p.get_future();
ctor_move.pass.cpp 13 // <future>
19 #include <future>
39 std::future<double> f = p.get_future();
reset.pass.cpp 13 // <future>
19 #include <future>
41 std::future<double> f = p.get_future();
swap.pass.cpp 13 // <future>
19 #include <future>
40 std::future<double> f = p.get_future();
  /external/dagger2/producers/src/main/java/dagger/producers/monitoring/
ProducerMonitor.java 37 * <li>If the method returns a future, then:
39 * <li>{@link #succeeded(Object)} if the method returned normally, and the future succeeded; or
41 * future failed.
72 * Called when the producer?s future has completed successfully with a value.
80 * Called when the producer's future has failed with an exception.
88 * Adds this monitor's completion methods as a callback to the future. This is only intended to be
91 public <T> void addCallbackTo(ListenableFuture<T> future) {
93 future,
  /external/libcxx/test/std/thread/futures/futures.task/futures.task.members/
ctor_move.pass.cpp 13 // <future>
19 #include <future>
39 std::future<double> f = p.get_future();
reset.pass.cpp 13 // <future>
19 #include <future>
41 std::future<double> f = p.get_future();
swap.pass.cpp 13 // <future>
19 #include <future>
40 std::future<double> f = p.get_future();
ctor1.fail.cpp 13 // <future>
21 #include <future>
  /external/libcxx/test/std/thread/futures/futures.task/futures.task.nonmembers/
swap.pass.cpp 13 // <future>
21 #include <future>
42 std::future<double> f = p.get_future();
  /frameworks/base/libs/hwui/hwui/
AnimatedImageThread.cpp 34 std::future<AnimatedImageDrawable::Snapshot> AnimatedImageThread::decodeNextFrame(
39 std::future<AnimatedImageDrawable::Snapshot> AnimatedImageThread::reset(
  /packages/apps/Dialer/java/com/android/dialer/metrics/
FutureTimer.java 33 /** Applies logcat and metric logging to a supplied future. */
42 /** Modes for logging Future results to logcat. */
47 * Don't ever log the result of the future to logcat. For example, may be appropriate if your
48 * future returns a proto and you don't want to spam the logs with multi-line entries, or if
49 * your future returns void/null and so would have no value being logged.
53 * Always log the result of the future to logcat (at DEBUG level). Useful when your future
68 * Applies logcat and metric logging to the supplied future.
70 * <p>This should be called as soon as possible after the future is submitted for execution, as
71 * timing is not started until this method is called. While work for the supplied future may hav
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/thread/futures/futures.task/futures.task.nonmembers/
swap.pass.cpp 13 // <future>
21 #include <future>
42 std::future<double> f = p.get_future();
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/util/concurrent/
RoboExecutorServiceTest.java 8 import java.util.concurrent.Future;
48 Future<String> future = executorService.submit(runnable, "foo"); local
51 assertThat(future.isDone()).isFalse();
55 assertThat(future.isDone()).isTrue();
57 assertThat(future.get()).isEqualTo("foo");
62 Future<String> future = executorService.submit(new Callable<String>() { local
71 assertThat(future.isDone()).isFalse();
75 assertThat(future.isDone()).isTrue()
113 Future<String> future = executorService.submit(runnable, "foo"); local
    [all...]
  /device/google/accessory/demokit/app/
Android.mk 26 LOCAL_JAVA_LIBRARIES := com.android.future.usb.accessory
  /external/libcxx/test/std/thread/futures/futures.errors/
default_error_condition.pass.cpp 12 // <future>
18 #include <future>
equivalent_int_error_condition.pass.cpp 12 // <future>
18 #include <future>
make_error_code.pass.cpp 12 // <future>
18 #include <future>
make_error_condition.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.shared_future/
default.pass.cpp 12 // <future>
18 #include <future>
  /external/libcxx/test/std/thread/futures/futures.unique_future/
dtor.pass.cpp 14 // <future>
16 // class future<R>
18 // ~future();
20 #include <future>
30 std::future<T> f;
44 std::future<T> f;
58 std::future<T> f;
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AccountManagerTest.java 45 AccountManagerFuture<Bundle> future = local
48 assertThat(future.isCancelled(), equalTo(false));
49 future.cancel(true);
50 assertThat(future.isCancelled(), equalTo(true));
55 AccountManagerFuture<Bundle> future = local
58 assertThat(future.isDone(), equalTo(false));
59 future.cancel(true);
60 assertThat(future.isDone(), equalTo(true));
65 AccountManagerFuture<Bundle> future = local
68 assertThat(future.isDone(), equalTo(false))
81 AccountManagerFuture<Bundle> future = local
92 AccountManagerFuture<Bundle> future = local
    [all...]

Completed in 146 milliseconds

1 2 3 45 6 7 8 91011>>