HomeSort by relevance Sort by last modified time
    Searched refs:cancel (Results 126 - 150 of 2586) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/guava/guava/src/com/google/common/util/concurrent/
ForwardingFuture.java 47 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ForwardingFuture
48 return delegate().cancel(mayInterruptIfRunning);
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
AsyncSettableFutureTest.java 127 inner.cancel(true);
139 async.cancel(true);
152 async.cancel(false);
163 async.cancel(true);
169 async.cancel(false);
170 async.cancel(true);
179 async.cancel(true);
180 async.cancel(false);
  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 62 this.cancel();
78 this.cancel();
  /frameworks/base/core/java/android/app/
JobSchedulerImpl.java 69 public void cancel(int jobId) { method in class:JobSchedulerImpl
71 mBinder.cancel(jobId);
  /frameworks/base/core/java/android/app/job/
IJobScheduler.aidl 30 void cancel(int jobId);
  /frameworks/base/core/java/android/hardware/radio/
ITuner.aidl 62 void cancel();
  /frameworks/base/core/tests/coretests/src/android/animation/
ViewPropertyAnimatorTest.java 74 mAnim.cancel();
191 * Verify that calling cancel on an unstarted animator does nothing.
196 mAnimator.cancel();
200 * Verify that calling cancel on a started animator does the right thing.
212 mAnimator.cancel();
235 mAnimator.cancel();
293 * Same as testPlayingDelayedCancel, but cancel during the startDelay period
304 // the listeners with cancel/end callbacks since they won't be called
332 mAnimator.cancel();
333 mAnimator.cancel();
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
UserUtil.java 44 context.getString(android.R.string.cancel), this);
55 cancel(); method
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
TouchExplorer.java 240 mSendHoverEnterAndMoveDelayed.cancel();
241 mSendHoverExitDelayed.cancel();
242 mExitGestureDetectionModeDelayed.cancel();
243 mSendTouchExplorationEndDelayed.cancel();
244 mSendTouchInteractionEndDelayed.cancel();
328 mSendTouchExplorationEndDelayed.cancel();
336 mSendTouchInteractionEndDelayed.cancel();
401 mSendHoverEnterAndMoveDelayed.cancel();
402 mSendHoverExitDelayed.cancel();
452 mSendHoverEnterAndMoveDelayed.cancel();
1130 public void cancel() { method in class:TouchExplorer.ExitGestureDetectionModeDelayed
1158 cancel(); method
1169 public void cancel() { method in class:TouchExplorer.SendHoverEnterAndMoveDelayed
1192 cancel(); method
1235 cancel(); method
1242 public void cancel() { method in class:TouchExplorer.SendHoverExitDelayed
1263 cancel(); method
1295 public void cancel() { method in class:TouchExplorer.SendAccessibilityEventDelayed
1310 cancel(); method
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParser_V21.java 117 public void cancel() { method in class:VCardParser_V21
118 mVCardParserImpl.cancel();
VCardParser_V30.java 96 public void cancel() { method in class:VCardParser_V30
97 mVCardParserImpl.cancel();
VCardParser_V40.java 84 public void cancel() { method in class:VCardParser_V40
85 mVCardParserImpl.cancel();
  /hardware/interfaces/broadcastradio/1.0/
ITuner.hal 95 * Cancel a scan, step or tune operation.
102 cancel() generates(Result result);
  /libcore/ojluni/src/main/java/sun/nio/fs/
Cancellable.java 74 final void cancel() { method in class:Cancellable
116 * thread is interrupted then an attempt is make to cancel the background
128 task.cancel();
  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
CaptureSessionCreator.java 66 sessionFuture.cancel(true);
87 sessionFuture.cancel(true);
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PickerActivity.java 52 // "cancel" action, so we show an additional "cancel" button.
53 View view = findViewById(R.id.cancel);
81 if (v.getId() == R.id.cancel) finish();
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapLoader.java 34 * REQUESTED -> INIT (cancel), LOADED, ERROR, RECYCLED
80 if (mTask != null) mTask.cancel();
91 if (mTask != null) mTask.cancel();
  /packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/
ToggleOnTapCallback.java 25 mAnim.cancel();
55 mAnim.cancel();
  /packages/services/Telecomm/testapps/src/com/android/server/telecom/testapps/
SelfManagedCallNotificationReceiver.java 49 notificationManager.cancel(SelfManagedConnection.CALL_NOTIFICATION, callId);
58 notificationManager.cancel(SelfManagedConnection.CALL_NOTIFICATION, callId);
  /prebuilts/tools/common/m2/repository/org/reactivestreams/reactive-streams/1.0.0/
reactive-streams-1.0.0.jar 
  /tools/tradefederation/core/src/com/android/tradefed/device/metric/
ScheduledDeviceMetricCollector.java 56 timer.cancel();
74 timer.cancel();
  /libcore/ojluni/src/main/java/sun/nio/ch/
PendingFuture.java 110 task.cancel(false);
140 timeoutTask.cancel(false);
158 timeoutTask.cancel(false);
226 public boolean cancel(boolean mayInterruptIfRunning) { method in class:PendingFuture
235 // set result and cancel timer
239 timeoutTask.cancel(false);
242 // close channel if forceful cancel
  /cts/tests/app/src/android/app/cts/
PendingIntentTest.java 156 mPendingIntent.cancel();
193 mPendingIntent.cancel();
273 pi.cancel();
291 mPendingIntent.cancel();
318 mPendingIntent.cancel();
335 mPendingIntent.cancel();
347 mPendingIntent.cancel();
375 mPendingIntent.cancel();
406 mPendingIntent.cancel();
423 mPendingIntent.cancel();
    [all...]
  /frameworks/support/design/src/android/support/design/widget/
BottomSheetDialog.java 117 public void setCanceledOnTouchOutside(boolean cancel) {
118 super.setCanceledOnTouchOutside(cancel);
119 if (cancel && !mCancelable) {
122 mCanceledOnTouchOutside = cancel;
148 cancel();
169 cancel();
221 cancel();
  /build/soong/ui/build/
signal.go 35 // 2. Call cancel() which is normally the cancellation of a Context. This will send a SIGKILL
41 func SetupSignals(log logger.Logger, cancel, cleanup func()) {
44 go handleSignals(signals, log, cancel, cleanup)
47 func handleSignals(signals chan os.Signal, log logger.Logger, cancel, cleanup func()) {
55 // Things didn't exit cleanly, cancel our ctx (SIGKILL to subprocesses)
59 go cancel()
61 // Cancel didn't work. Try to run cleanup manually, then we'll panic

Completed in 705 milliseconds

1 2 3 4 56 7 8 91011>>