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

1 2 3 4 5 6 7 8 9

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/fakes/
RoboVibratorTest.java 44 public void cancelled() { method in class:RoboVibratorTest
  /external/autotest/client/cros/cellular/pseudomodem/
state_machine.py 56 def cancelled(self): member in class:StateMachine
58 @returns: True, if the state machine has been cancelled or has
  /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;
  /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/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
VibratorTest.java 48 public void cancelled() { method in class:VibratorTest
  /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;
  /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) {
  /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;
  /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/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...]
  /external/python/cpython3/Lib/concurrent/futures/
_base.py 19 # The future was cancelled by the user...
20 CANCELLED = 'CANCELLED'
28 CANCELLED,
36 CANCELLED: "cancelled",
37 CANCELLED_AND_NOTIFIED: "cancelled",
49 """The Future was cancelled."""
184 cancelled). If any given Futures are duplicated, they will be returned
245 cancelled
340 def cancelled(self): member in class:Future
    [all...]
  /external/python/futures/concurrent/futures/
_base.py 21 # The future was cancelled by the user...
22 CANCELLED = 'CANCELLED'
30 CANCELLED,
38 CANCELLED: "cancelled",
39 CANCELLED_AND_NOTIFIED: "cancelled",
51 """The Future was cancelled."""
209 cancelled). If any given Futures are duplicated, they will be returned
278 cancelled
390 def cancelled(self): member in class:Future
    [all...]
  /external/tensorflow/tensorflow/contrib/data/kernels/
prefetching_kernels.cc 139 bool cancelled = false; local
144 cancelled = true;
163 if (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
  /libcore/jsr166-tests/src/test/java/jsr166/
FutureTaskTest.java 268 * runAndReset of a non-cancelled task succeeds
447 final CountDownLatch cancelled = new CountDownLatch(1); local
452 await(cancelled);
478 cancelled.countDown();
520 final CountDownLatch cancelled = new CountDownLatch(1); local
525 await(cancelled);
534 cancelled.countDown();
632 final CountDownLatch cancelled = new CountDownLatch(1); local
642 await(cancelled);
667 cancelled.countDown()
    [all...]
  /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...]
  /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;
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.1/
grpc-context-1.0.1.jar 
  /prebuilts/tools/common/m2/repository/io/grpc/grpc-context/1.0.3/
grpc-context-1.0.3.jar 
  /external/libchrome/crypto/
nss_util.cc 124 bool cancelled = false; local
127 &cancelled);
128 if (cancelled)
    [all...]
  /external/webrtc/webrtc/p2p/base/
turnport.cc 985 bool cancelled = timestamp != entry->destruction_timestamp(); local
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
scan.c 1197 int cancelled; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/events/
EventBus.java 221 boolean cancelled; field in class:EventBus.Event
243 // When cloning an event, reset the cancelled-dispatch state
244 evt.cancelled = false;
568 // Reset the event's cancelled state
570 event.cancelled = false;
583 // Reset the event's cancelled state
585 event.cancelled = false;
    [all...]

Completed in 501 milliseconds

1 2 3 4 5 6 7 8 9