HomeSort by relevance Sort by last modified time
    Searched refs:cancel (Results 276 - 300 of 2864) sorted by null

<<11121314151617181920>>

  /packages/apps/Settings/src/com/android/settings/users/
UserDialogs.java 57 .setNegativeButton(android.R.string.cancel, null);
122 .setNegativeButton(android.R.string.cancel, null)
137 .setNegativeButton(android.R.string.cancel, null)
  /tools/tradefederation/core/tests/src/com/android/tradefed/device/
BackgroundDeviceActionTest.java 79 mBackgroundAction.cancel();
110 mBackgroundAction.cancel();
164 mBackgroundAction.cancel();
  /prebuilts/go/darwin-x86/src/net/
dial_unix_test.go 71 // Cancel the context at just the moment which
76 // cancel the dial by messing with its write
80 t.Logf("saw cancel")
82 t.Errorf("didn't see cancel after 5 seconds")
  /prebuilts/go/linux-x86/src/net/
dial_unix_test.go 71 // Cancel the context at just the moment which
76 // cancel the dial by messing with its write
80 t.Logf("saw cancel")
82 t.Errorf("didn't see cancel after 5 seconds")
  /prebuilts/jdk/jdk8/darwin-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
ScanManagerTest.java 133 public void cancel() throws Exception; method in interface:ScanManagerTest.Call
147 public void cancel() throws Exception {
214 op.cancel();
283 public void cancel() throws Exception {
320 public void cancel() throws Exception {
349 public void cancel() throws Exception {
  /prebuilts/jdk/jdk8/linux-x86/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
ScanManagerTest.java 133 public void cancel() throws Exception; method in interface:ScanManagerTest.Call
147 public void cancel() throws Exception {
214 op.cancel();
283 public void cancel() throws Exception {
320 public void cancel() throws Exception {
349 public void cancel() throws Exception {
  /cts/tests/AlarmManager/app/src/android/alarmmanager/alarmtestapp/cts/
TestAlarmScheduler.java 84 am.cancel(alarmClockSender);
85 am.cancel(alarmSender);
  /cts/tests/autofillservice/src/android/autofillservice/cts/
SimpleSaveActivity.java 26 * Simple activity that has an edit text and buttons to cancel or commit the autofill context.
74 mCancel = findViewById(R.id.cancel);
77 mCancel.setOnClickListener((v) -> getAutofillManager().cancel());
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/ui/
MediaSeekBar.java 113 mProgressAnimator.cancel();
149 // If the user is changing the slider, cancel the animation.
151 valueAnimator.cancel();
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 80 alarm.cancel(pendingIntent);
90 notifyMgr.cancel(Constants.NOTIFICATION_TIMER_COUNTDOWN);
94 // Cancel the countdown notification to show the "timer done" notification.
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediasession/ui/
MediaSeekBar.java 113 mProgressAnimator.cancel();
149 // If the user is changing the slider, cancel the animation.
151 valueAnimator.cancel();
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
TimerNotificationService.java 80 alarm.cancel(pendingIntent);
90 notifyMgr.cancel(Constants.NOTIFICATION_TIMER_COUNTDOWN);
94 // Cancel the countdown notification to show the "timer done" notification.
  /development/samples/ApiDemos/src/com/example/android/apis/app/
JobWorkService.java 123 // Have the processor cancel its current work.
124 mCurProcessor.cancel(true);
153 // We use a string id because it is a unique number. We use it later to cancel.
158 mNM.cancel(R.string.service_created);
  /development/samples/browseable/Timer/src/com.example.android.wearable.timer/
TimerNotificationService.java 80 alarm.cancel(pendingIntent);
90 notifyMgr.cancel(Constants.NOTIFICATION_TIMER_COUNTDOWN);
94 // Cancel the countdown notification to show the "timer done" notification.
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
ListenableFutureTaskTest.java 127 task.cancel(false);
145 // Task has started up, cancel it while it's running.
146 task.cancel(true);
  /external/parameter-framework/asio-1.10.6/include/asio/ip/
resolver_service.hpp 78 /// Cancel pending asynchronous operations.
79 void cancel(implementation_type& impl) function in class:asio::ip::resolver_service
81 service_impl_.cancel(impl);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAsyncTask.java 61 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ShadowAsyncTask
62 return future.cancel(mayInterruptIfRunning);
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
NotificationManagerTest.java 70 notificationManager.cancel(1);
79 notificationManager.cancel("a tag", 1);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowJobScheduler.java 27 public abstract void cancel(int jobId); method in class:ShadowJobScheduler
60 public void cancel(int jobId) { method in class:ShadowJobScheduler.ShadowJobSchedulerImpl
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
PerfData.java 80 mAlarmMgr.cancel(mPendingIntent);
108 mAlarmMgr.cancel(mPendingIntent);
  /frameworks/base/core/java/android/os/
UpdateEngine.java 37 * In addition, methods are provided to {@link #cancel} or
205 public void cancel() { method in class:UpdateEngine
207 mUpdateEngine.cancel();
  /frameworks/base/core/java/android/view/
ViewPropertyAnimatorRT.java 60 mAnimators[i].cancel(); method
132 mAnimators[property].cancel(); method
  /frameworks/base/core/java/com/android/internal/util/
WakeupMessage.java 106 * Cancel all pending messages. This includes alarms that may have been fired, but have not been
109 public synchronized void cancel() { method in class:WakeupMessage
111 mAlarmManager.cancel(this);
  /frameworks/base/services/backup/java/com/android/server/backup/
KeyValueBackupJob.java 90 public static void cancel(Context ctx) { method in class:KeyValueBackupJob
93 js.cancel(JOB_ID);
  /frameworks/base/services/core/java/com/android/server/wm/
ScreenRotationAnimation.java 649 mStartExitAnimation.cancel();
653 mStartEnterAnimation.cancel();
657 mFinishExitAnimation.cancel();
661 mFinishEnterAnimation.cancel();
667 mStartFrameAnimation.cancel();
671 mRotateFrameAnimation.cancel();
675 mFinishFrameAnimation.cancel()
    [all...]

Completed in 582 milliseconds

<<11121314151617181920>>