HomeSort by relevance Sort by last modified time
    Searched defs:isCancelled (Results 1 - 25 of 44) sorted by null

1 2

  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingFuture.java 52 public boolean isCancelled() {
53 return delegate().isCancelled();
AbstractFuture.java 120 public boolean isCancelled() {
121 return sync.isCancelled();
313 boolean isCancelled() {
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
SingleJUnitTestResultParser.java 51 public boolean isCancelled() {
DeqpTestRunner.java 173 public boolean isCancelled() {
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
FuturesTransformAsyncFunctionTest.java 101 assertTrue(resultFuture.isCancelled());
102 assertTrue(inputFuture.isCancelled());
103 assertFalse(outputFuture.isCancelled());
114 assertTrue(resultFuture.isCancelled());
115 assertFalse(inputFuture.isCancelled());
116 assertTrue(outputFuture.isCancelled());
136 assertTrue(resultFuture.isCancelled());
137 assertFalse(inputFuture.isCancelled());
138 assertFalse(outputFuture.isCancelled());
156 assertFalse(resultFuture.isCancelled());
    [all...]
ListenableFutureTester.java 57 assertFalse(future.isCancelled());
67 assertFalse(future.isCancelled());
71 assertFalse(future.isCancelled());
79 assertTrue(future.isCancelled());
83 assertTrue(future.isCancelled());
94 assertFalse(future.isCancelled());
98 assertFalse(future.isCancelled());
AbstractListeningExecutorServiceTest.java 630 assertFalse(f1.isCancelled());
632 assertFalse(f2.isCancelled());
634 assertTrue(f3.isCancelled());
ListenableFutureTaskTest.java 84 assertFalse(task.isCancelled());
93 assertFalse(task.isCancelled());
101 assertFalse(task.isCancelled());
121 assertFalse(task.isCancelled());
127 assertTrue(task.isCancelled());
133 assertTrue(task.isCancelled());
146 assertTrue(task.isCancelled());
152 assertTrue(task.isCancelled());
AbstractFutureTest.java 69 assertTrue(future.isCancelled());
77 assertTrue(future.isCancelled());
89 assertFalse(future.isCancelled());
JdkFutureAdaptersTest.java 152 public boolean isCancelled() {
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
EngineJob.java 20 private boolean isCancelled;
56 if (isComplete || isCancelled) {
59 isCancelled = true;
64 boolean isCancelled() {
65 return isCancelled;
76 + " cancelled: " + isCancelled);
78 if (isCancelled) {
115 + " cancelled: " + isCancelled);
117 if (isCancelled) {
ResourceRunner.java 37 private volatile boolean isCancelled;
62 isCancelled = true;
75 if (isCancelled) {
SourceResourceRunner.java 45 private volatile boolean isCancelled;
70 isCancelled = true;
78 if (isCancelled) {
  /external/glide/library/src/main/java/com/bumptech/glide/volley/
VolleyRequestFuture.java 117 if (isCancelled()) {
131 if (isCancelled()) {
143 public boolean isCancelled() {
149 return mResultReceived || mException != null || isCancelled();
  /external/guava/guava-testlib/src/com/google/common/util/concurrent/testing/
AbstractCheckedFutureTest.java 74 assertFalse(future.isCancelled());
91 assertTrue(future.isCancelled());
104 assertFalse(future.isCancelled());
130 assertFalse(future.isCancelled());
138 assertFalse(future.isCancelled());
155 assertFalse(future.isCancelled());
AbstractListenableFutureTest.java 75 assertFalse(future.isCancelled());
103 assertFalse(future.isCancelled());
127 * This method checks the cancel, isCancelled, and isDone methods.
132 assertFalse(future.isCancelled());
151 assertFalse(future.isCancelled());
156 assertTrue(future.isCancelled());
191 assertTrue(future.isCancelled());
  /cts/suite/cts/hostTests/jank/src/com/android/cts/jank/
CtsHostJankTest.java 107 public boolean isCancelled() {
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 106 assertTrue(mAsyncTask.isCancelled());
119 assertTrue(mAsyncTask.isCancelled());
128 assertTrue(mAsyncTask.isCancelled());
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 94 * if (isCancelled()) break;
156 * this method will cause subsequent calls to {@link #isCancelled()} to return true.
160 * check the return value of {@link #isCancelled()} periodically from
426 * @see #isCancelled()
443 * @see #isCancelled()
458 public final boolean isCancelled() {
476 * value returned by {@link #isCancelled()} periodically from
488 * @see #isCancelled()
647 if (!isCancelled()) {
654 if (isCancelled()) {
    [all...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
AsyncTask.java 94 * if (isCancelled()) break;
156 * this method will cause subsequent calls to {@link #isCancelled()} to return true.
160 * check the return value of {@link #isCancelled()} periodically from
426 * @see #isCancelled()
443 * @see #isCancelled()
458 public final boolean isCancelled() {
476 * value returned by {@link #isCancelled()} periodically from
488 * @see #isCancelled()
647 if (!isCancelled()) {
654 if (isCancelled()) {
    [all...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
AsyncTask.java 94 * if (isCancelled()) break;
156 * this method will cause subsequent calls to {@link #isCancelled()} to return true.
160 * check the return value of {@link #isCancelled()} periodically from
426 * @see #isCancelled()
443 * @see #isCancelled()
458 public final boolean isCancelled() {
476 * value returned by {@link #isCancelled()} periodically from
488 * @see #isCancelled()
647 if (!isCancelled()) {
654 if (isCancelled()) {
    [all...]
  /external/guava/guava-tests/test/com/google/common/testing/
GcFinalizationTest.java 46 assertFalse(future.isCancelled());
57 assertTrue(future.isCancelled());
  /external/nist-sip/java/gov/nist/javax/sip/parser/
Pipeline.java 61 private boolean isCancelled;
68 if (this.isCancelled)
80 this.isCancelled = true;
  /external/chromium_org/ui/file_manager/file_manager/common/js/
async_util.js 112 AsyncUtil.ConcurrentQueue.prototype.isCancelled = function() {
  /external/glide/library/src/main/java/com/bumptech/glide/request/
GenericRequest.java 56 private boolean isCancelled;
132 isCancelled = false;
234 isCancelled = true;
302 if (isCancelled) {

Completed in 489 milliseconds

1 2