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

1 2 3 4 5

  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IShellOutputReceiver.java 43 public boolean isCancelled();
NullOutputReceiver.java 44 * @see com.android.ddmlib.adb.IShellOutputReceiver#isCancelled()
46 public boolean isCancelled() {
CollectingOutputReceiver.java 37 public boolean isCancelled() {
52 if (!isCancelled()) {
GetPropReceiver.java 66 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();
FutureTask.java 62 public boolean isCancelled() {
ThreadPool.java 46 boolean isCancelled();
53 public boolean isCancelled() {
153 public boolean 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/src/com/google/common/util/concurrent/
ForwardingFuture.java 47 public boolean isCancelled() {
48 return delegate().isCancelled();
AbstractCheckedFuture.java 95 public boolean isCancelled() {
96 return delegate.isCancelled();
AbstractFuture.java 82 public boolean isCancelled() {
83 return sync.isCancelled();
275 boolean 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 51 if (jc.isCancelled()) return null;
58 if (bitmap == null && !jc.isCancelled()) {
64 if (jc.isCancelled()) return null;
78 if (jc.isCancelled()) return null;
81 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) {
157 public boolean isCancelled() {
158 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() {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
AbstractDisplayItem.java 45 protected void updateImage(Bitmap bitmap, boolean isCancelled) {
50 if (isCancelled && bitmap == null) {
  /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()) {
  /system/media/mca/filterfw/java/android/filterfw/core/
AsyncRunner.java 76 while (!isCancelled() && result.status == RESULT_RUNNING) {
87 if (isCancelled()) {
213 if (mRunTask != null && !mRunTask.isCancelled() ) {
  /frameworks/base/core/java/android/os/
AsyncTask.java 127 * this method will cause subsequent calls to {@link #isCancelled()} to return true.
131 * check the return value of {@link #isCancelled()} periodically from
381 * @see #isCancelled()
398 * @see #isCancelled()
413 public final boolean isCancelled() {
414 return mFuture.isCancelled();
431 * value returned by {@link #isCancelled()} periodically from
443 * @see #isCancelled()
592 if (!isCancelled()) {
599 if (isCancelled()) {
    [all...]

Completed in 527 milliseconds

1 2 3 4 5