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

1 2 3 4 5 6 7

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IShellOutputReceiver.java 43 public boolean isCancelled();
NullOutputReceiver.java 46 * @see com.android.ddmlib.adb.IShellOutputReceiver#isCancelled()
49 public boolean isCancelled() {
CollectingOutputReceiver.java 38 public boolean isCancelled() {
54 if (!isCancelled()) {
GetPropReceiver.java 67 public boolean isCancelled() {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Future.java 21 // - Once cancel() is called, isCancelled() always returns true. It is a sticky
31 public boolean isCancelled();
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
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());
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...]
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());
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebpolicydecision.cpp 46 gboolean isCancelled;
68 priv->isCancelled = FALSE;
87 if (!priv->isCancelled)
105 if (!priv->isCancelled)
123 if (!priv->isCancelled)
133 priv->isCancelled = TRUE;
  /libcore/luni/src/main/java/java/util/concurrent/
Future.java 80 * always return <tt>true</tt>. Subsequent calls to {@link #isCancelled}
98 boolean 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());
  /frameworks/base/core/java/android/accounts/
AccountManagerFuture.java 51 * always return <tt>true</tt>. Subsequent calls to {@link #isCancelled}
69 boolean isCancelled();
85 * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}.
101 * available without blocking, one may call {@link #isDone()} and {@link #isCancelled()}.
  /sdk/chimpchat/src/com/android/chimpchat/adb/
CommandOutputCapture.java 29 public boolean isCancelled() {
LoggingOutputReceiver.java 44 public boolean isCancelled() {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ImageCacheRequest.java 54 if (jc.isCancelled()) return null;
66 if (bitmap == null && !jc.isCancelled()) {
75 if (jc.isCancelled()) return null;
87 if (jc.isCancelled()) return null;
90 if (jc.isCancelled()) return null;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 78 mLaunchInfo.isCancelled() == false) {
158 public boolean isCancelled() {
159 return mLaunchInfo.isCancelled();
  /packages/apps/Contacts/src/com/android/contacts/vcard/
ProcessorBase.java 28 * {@link #cancel(boolean)}. Users can check the processor's status using {@link #isCancelled()}
56 public abstract boolean isCancelled();
ImportProcessor.java 106 if (isCancelled() && mListener != null) {
125 if (isCancelled()) {
190 if (isCancelled()) {
236 if (isCancelled()) {
296 public synchronized boolean isCancelled() {
  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingFuture.java 52 public boolean isCancelled() {
53 return delegate().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/webkit/Tools/DumpRenderTree/chromium/
TestShellMac.mm 76 ![currentThread isCancelled]) {
81 if (![currentThread isCancelled]) {
  /packages/apps/Contacts/src/com/android/contacts/util/
PhoneNumberFormatter.java 49 if (watcher == null || isCancelled()) {
  /packages/apps/Mms/src/com/android/mms/util/
PhoneNumberFormatter.java 49 if (watcher == null || isCancelled()) {
  /cts/tests/tests/os/src/android/os/cts/
AsyncTaskTest.java 106 assertTrue(mAsyncTask.isCancelled());
119 assertTrue(mAsyncTask.isCancelled());
128 assertTrue(mAsyncTask.isCancelled());

Completed in 1114 milliseconds

1 2 3 4 5 6 7