/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/ |
ShadowVibrator.java | 11 private boolean cancelled; field in class:ShadowVibrator 31 cancelled = true; 40 return cancelled;
|
/external/chromium_org/components/dom_distiller/core/ |
task_tracker_unittest.cc | 31 bool Cancelled() { return cancelled_; } 95 EXPECT_FALSE(cancel_callback.Cancelled()); 97 EXPECT_FALSE(cancel_callback.Cancelled()); 99 EXPECT_TRUE(cancel_callback.Cancelled()); 109 EXPECT_FALSE(cancel_callback.Cancelled()); 116 // Since there is a pending save request, the task shouldn't be cancelled. 117 EXPECT_FALSE(cancel_callback.Cancelled()); 138 EXPECT_FALSE(cancel_callback.Cancelled()); 161 EXPECT_TRUE(cancel_callback.Cancelled());
|
task_tracker.h | 24 // be cancelled when the handle is destroyed. 54 // finishes, the other will be cancelled). 61 // A view request is cancelled by deleting the corresponding ViewerHandle. Once 62 // all view requests are cancelled (and the save callback has been called if
|
/external/chromium_org/chrome/browser/resources/file_manager/foreground/js/ |
app_installer.js | 32 CANCELLED: 'AppInstaller.cancelled', 44 AppInstaller.USER_CANCELLED_ERROR_STR_ = 'User cancelled install'; 73 AppInstaller.Result.CANCELLED :
|
/external/chromium_org/net/dns/ |
serial_worker.cc | 46 case CANCELLED: 57 state_ = CANCELLED; 70 case CANCELLED: 88 case CANCELLED:
|
/external/chromium/crypto/ |
crypto_module_blocking_password_delegate.h | 25 // The implementation should set |*cancelled| to true if the user cancelled 29 bool* cancelled) = 0;
|
/external/chromium_org/base/ |
cancelable_callback.h | 18 // CancelableCallback objects must be created on, posted to, cancelled on, and 27 // then the callback is cancelled. 80 // Returns true if the wrapped callback has been cancelled. 85 // Sets |callback| as the closure that may be cancelled. |callback| may not 86 // be null. Outstanding and any previously wrapped callbacks are cancelled. 122 // The stored closure that may be cancelled. 150 // Returns true if the wrapped callback has been cancelled. 155 // Sets |callback| as the closure that may be cancelled. |callback| may not 156 // be null. Outstanding and any previously wrapped callbacks are cancelled. 192 // The stored closure that may be cancelled [all...] |
/external/chromium_org/crypto/ |
nss_crypto_module_delegate.h | 33 // The implementation should set |*cancelled| to true if the user cancelled 37 bool* cancelled) = 0;
|
/external/chromium/chrome/browser/prerender/ |
prerender_final_status.h | 10 // FinalStatus indicates whether |this| was used, or why it was cancelled.
|
/libcore/luni/src/main/java/java/util/concurrent/ |
Future.java | 17 * determine if the task completed normally or was cancelled. Once a 18 * computation has completed, the computation cannot be cancelled. 71 * fail if the task has already completed, has already been cancelled, 72 * or could not be cancelled for some other reason. If successful, 86 * @return {@code false} if the task could not be cancelled, 93 * Returns {@code true} if this task was cancelled before it completed 96 * @return {@code true} if this task was cancelled before it completed 116 * @throws CancellationException if the computation was cancelled 131 * @throws CancellationException if the computation was cancelled
|
ScheduledFuture.java | 10 * A delayed result-bearing action that can be cancelled.
|
/external/chromium_org/chromeos/dbus/ |
bluetooth_agent_service_provider.h | 41 // permission; cancelled indicates the user cancelled the request 46 CANCELLED 51 // rejected or cancelled) and the |pincode| requested. 56 // rejected or cancelled) and the |passkey| requested, a numeric in the 62 // of the request (success, rejected or cancelled). 84 // cancelled. 108 // cancelled. 125 // rejected or cancelled). 141 // |callback| to provide their response (success, rejected or cancelled) [all...] |
/external/chromium_org/chrome/browser/chromeos/input_method/ |
delayable_widget.h | 25 // will be cancelled. 33 // will be cancelled.
|
/external/chromium_org/chrome/browser/ui/panels/ |
panel_resize_controller.h | 33 Panel* EndResizing(bool cancelled); 53 // Bounds to restore the panel to if resize is cancelled.
|
/external/chromium_org/remoting/webapp/ |
error.js | 16 // Used to signify that an operation was cancelled by the user. This should 19 CANCELLED: '__CANCELLED__',
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/ |
MmiCode.java | 29 CANCELLED, 49 * State becomes CANCELLED unless already COMPLETE or FAILED
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/ |
Future.java | 23 // ignore that flag. Regardless whether the Future is cancelled, a return 25 // null if it finds the Future is cancelled.
|
/external/guava/guava/src/com/google/common/util/concurrent/ |
AbstractFuture.java | 50 * completed, failed, or cancelled. 205 * {@link #COMPLETED} or {@link #CANCELLED}. 210 * computation, and only then transition to COMPLETED or CANCELLED. 223 static final int CANCELLED = 4; 268 * was cancelled, or a {@link ExecutionException} if the task completed with 294 case CANCELLED: 295 throw new CancellationException("Task was cancelled."); 304 * Checks if the state is {@link #COMPLETED} or {@link #CANCELLED}. 307 return (getState() & (COMPLETED | CANCELLED)) != 0; 311 * Checks if the state is {@link #CANCELLED} [all...] |
SettableFuture.java | 23 * or {@link #setException(Throwable)} call. It may also be cancelled. 46 * been set or cancelled. 61 * cancelled.
|
/frameworks/support/v4/java/android/support/v4/content/ |
AsyncTaskLoader.java | 124 * method requests that the load be cancelled, and notes this is the case; 127 * it will be held until the cancelled load is complete. 129 * @return Returns <tt>false</tt> if the task could not be cancelled, 141 "cancelLoad: still waiting for cancelled task; dropping next"); 157 boolean cancelled = mTask.cancel(false); 158 if (DEBUG) Log.v(TAG, "cancelLoad: cancelled=" + cancelled); 159 if (cancelled) { 163 return cancelled; 202 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!") [all...] |
/frameworks/base/core/java/android/accounts/ |
AccountManagerFuture.java | 32 * determine if the task completed normally or was cancelled. Once a 33 * computation has completed, the computation cannot be cancelled. 42 * fail if the task has already completed, has already been cancelled, 43 * or could not be cancelled for some other reason. If successful, 57 * @return <tt>false</tt> if the task could not be cancelled, 64 * Returns <tt>true</tt> if this task was cancelled before it completed 67 * @return <tt>true</tt> if this task was cancelled before it completed
|
/external/chromium_org/content/public/browser/ |
resource_controller.h | 15 // default, load is cancelled with ERR_ABORTED code. CancelWithError can be used
|
/external/chromium_org/third_party/skia/src/images/ |
SkJpegUtility.h | 43 // has been cancelled.
|
/external/jmonkeyengine/engine/src/core/com/jme3/app/ |
AppTask.java | 55 private boolean cancelled, finished; field in class:AppTask 75 cancelled = true; 121 return cancelled; 130 return finished || cancelled || (exception != null);
|
/external/skia/src/images/ |
SkJpegUtility.h | 43 // has been cancelled.
|