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

1 2 3 4 5 6 7 8 910

  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
SimpleFuture.java 17 private boolean cancelled; field in class:SimpleFuture
25 return cancelled;
30 cancelled = true;
34 return cancelled;
38 if (cancelled) {
47 if (cancelled) {
57 if (!cancelled) {
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowVibrator.java 11 private boolean cancelled; field in class:ShadowVibrator
31 cancelled = true;
40 return cancelled;
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
PlaybackSeekUi.java 70 * Called when cancelled or confirmed. When cancelled, client should restore playing from
73 * @param cancelled True if cancelled false if confirmed.
75 public void onSeekFinished(boolean cancelled) {
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowVibrator.java 9 boolean cancelled; field in class:ShadowVibrator
38 * Returns true if the Vibrator has been cancelled.
41 return cancelled;
  /external/libchrome/crypto/
nss_crypto_module_delegate.h 33 // The implementation should set |*cancelled| to true if the user cancelled
37 bool* cancelled) = 0;
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
RoboVibrator.java 16 private boolean cancelled; field in class:RoboVibrator
74 cancelled = true;
84 return cancelled;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/
Worker.java 218 * cancelled and will never execute again. If {@link #isStopped()} returns {@code true} but
224 * @return {@code true} if this work operation has been cancelled
234 public final void stop(boolean cancelled) {
236 mCancelled = cancelled;
237 onStopped(cancelled);
248 * @param cancelled If {@code true}, the work has been explicitly cancelled
250 public void onStopped(boolean cancelled) {
  /external/wayland-protocols/flinger_headers/
ArcInputBridgeProtocol.h 133 bool cancelled; member in struct:arc::GestureArgs
233 static BridgeInputEvent PinchEndEvent(uint64_t timestamp, bool cancelled) {
235 event.gesture.cancelled = cancelled;
252 static BridgeInputEvent SwipeEndEvent(uint64_t timestamp, bool cancelled) {
254 event.gesture.cancelled = cancelled;
  /packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/
TranscriptionTask.java 68 protected volatile boolean cancelled; field in class:TranscriptionTask
95 cancelled = true;
126 recordResult(context, getTranscription(), dbHelper, cancelled);
133 if (cancelled) {
134 VvmLog.i(TAG, "sendRequest, cancelled");
146 if (cancelled) {
147 VvmLog.i(TAG, "sendRequest, cancelled");
195 boolean cancelled) {
222 cancelled
  /development/samples/ApiDemos/src/com/example/android/apis/app/
JobWorkService.java 65 boolean cancelled;
73 while (!(cancelled=isCancelled()) && (work=mParams.dequeueWork()) != null) {
91 if (cancelled) {
92 Log.i("JobWorkService", "CANCELLED!");
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
DelayedLaunchInfo.java 232 * Set if launch has been cancelled
234 public void setCancelled(boolean cancelled) {
235 this.mCancelled = cancelled;
239 * @return true if launch has been cancelled
  /frameworks/base/tests/JankBench/app/src/main/java/com/android/benchmark/ui/
ImageListViewScrollActivity.java 77 volatile boolean cancelled = false; field in class:ImageListViewScrollActivity.BitmapWorkerTask
98 if (!cancelled) {
142 inFlight.cancelled = true;
  /external/python/cpython3/Lib/asyncio/
futures.py 190 If the future is already done or cancelled, return False. Otherwise,
191 change the future's state to cancelled, schedule the callbacks and
214 def cancelled(self): member in class:Future
215 """Return True if the future was cancelled."""
224 future was cancelled.
231 If the future has been cancelled, raises CancelledError. If the
251 the future is done. If the future has been cancelled, raises
344 """Helper setting the result only if the future was not cancelled."""
345 if fut.cancelled():
353 if source.cancelled()
    [all...]
tasks.py 102 cancelled, this returns an empty list. If the coroutine was
140 task will be cancelled: the exception might be caught and
145 Immediately after this method is called, Task.cancelled() will
146 not return True (unless the task was already cancelled). A
147 task will be marked as cancelled when the wrapped coroutine
325 If the wait is cancelled, the task is also cancelled.
379 return_when == FIRST_EXCEPTION and (not f.cancelled() and
538 cancelled.
572 Cancellation: if the outer Future is cancelled, all children (tha
    [all...]
  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
PlaybackGlueHostImplWithViewHolder.java 123 public void onSeekFinished(boolean cancelled) {
124 mSeekClient.onSeekFinished(cancelled);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
VibratorTest.java 48 public void cancelled() { method in class:VibratorTest
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/fakes/
RoboVibratorTest.java 44 public void cancelled() { method in class:RoboVibratorTest
  /frameworks/base/core/java/android/content/
AsyncTaskLoader.java 184 "cancelLoad: still waiting for cancelled task; dropping next");
200 boolean cancelled = mTask.cancel(false);
201 if (DEBUG) Log.v(TAG, "cancelLoad: cancelled=" + cancelled);
202 if (cancelled) {
207 return cancelled;
249 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!");
  /frameworks/support/loader/src/main/java/androidx/loader/content/
AsyncTaskLoader.java 170 "cancelLoad: still waiting for cancelled task; dropping next");
186 boolean cancelled = mTask.cancel(false);
187 if (DEBUG) Log.v(TAG, "cancelLoad: cancelled=" + cancelled);
188 if (cancelled) {
193 return cancelled;
235 if (DEBUG) Log.v(TAG, "Cancelled task is now canceled!");
  /hardware/ril/libril/
ril_internal.h 76 char cancelled; member in struct:android::RequestInfo
  /packages/apps/Launcher2/src/com/android/launcher2/
DropTarget.java 60 /** Indicates that the drag operation was cancelled */
61 public boolean cancelled = false; field in class:DropTarget.DragObject
  /packages/apps/Launcher3/src/com/android/launcher3/
DropTarget.java 62 /** Indicates that the drag operation was cancelled */
63 public boolean cancelled = false; field in class:DropTarget.DragObject
111 * If the drop was cancelled for some reason, onDrop will never get called, the UI will
  /external/python/cpython3/Lib/test/test_asyncio/
test_futures.py 44 def cancelled(self): member in class:DuckFuture
53 assert not self.cancelled()
59 assert not self.cancelled()
133 self.assertFalse(f.cancelled())
136 self.assertTrue(f.cancelled())
150 self.assertTrue(f.cancelled())
163 self.assertFalse(f.cancelled())
181 self.assertFalse(f.cancelled())
228 self.assertEqual(repr(f_cancelled), '<Future cancelled>')
254 '<Future cancelled>')
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
BackgroundHelper.java 129 boolean cancelled = isCancelled();
130 if (DEBUG) Log.v(TAG, "doInBackground cancelled " + cancelled);
132 if (!cancelled) {
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.1/
grpc-context-1.0.1.jar 

Completed in 830 milliseconds

1 2 3 4 5 6 7 8 910