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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
ICancellationSignal.aidl 23 oneway void cancel();
CancellationSignal.java 22 * Provides the ability to cancel an operation in progress.
62 public void cancel() { method in class:CancellationSignal
81 remote.cancel();
101 * If {@link CancellationSignal#cancel} has already been called, then the provided
127 * If {@link CancellationSignal#cancel} has already been called, then the provided
150 remote.cancel();
196 * Called when {@link CancellationSignal#cancel} is invoked.
205 public void cancel() throws RemoteException { method in class:CancellationSignal.Transport
206 mCancellationSignal.cancel();
  /frameworks/base/core/java/com/android/internal/app/
IVoiceInteractorRequest.aidl 23 void cancel();
  /frameworks/support/v4/jellybean/android/support/v4/os/
CancellationSignalCompatJellybean.java 24 public static void cancel(Object cancellationSignalObj) { method in class:CancellationSignalCompatJellybean
25 ((android.os.CancellationSignal)cancellationSignalObj).cancel(); method
  /frameworks/base/core/java/android/webkit/
SslErrorHandler.java 26 * either {@link #proceed} or {@link #cancel} to set the WebView's response
43 * Cancel this request and all pending requests for the WebView that had
46 public void cancel() {} method in class:SslErrorHandler
HttpAuthHandler.java 26 * call either {@link #proceed} or {@link #cancel} to set the WebView's
52 * Instructs the WebView to cancel the authentication request.
54 public void cancel() { method in class:HttpAuthHandler
  /frameworks/base/test-runner/src/android/test/mock/
MockDialogInterface.java 13 public void cancel() { method in class:MockDialogInterface
  /packages/apps/Email/provider_src/com/android/email/provider/
FolderPickerCallback.java 24 public void cancel(); method in interface:FolderPickerCallback
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/util/
Future.java 21 // - Once cancel() is called, isCancelled() always returns true. It is a sticky
30 public void cancel(); method in interface:Future
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
TimerTaskTest.java 76 * java.util.TimerTask#cancel()
81 // Ensure cancel returns false if never scheduled
83 assertTrue("Unsheduled tasks should return false for cancel()",
84 !testTask.cancel());
90 assertTrue("TimerTask should not have run yet", testTask.cancel());
91 t.cancel();
104 "TimerTask.cancel() should return false if task has run",
105 testTask.cancel());
107 "TimerTask.cancel() should return false if called a second time",
108 testTask.cancel());
    [all...]
TimerTest.java 67 timer.cancel();
115 t.cancel();
118 t.cancel();
134 t.cancel();
137 t.cancel();
153 t.cancel();
156 t.cancel();
183 t.cancel();
186 t.cancel();
197 * java.util.Timer#cancel()
290 tasks[i].cancel(); method
    [all...]
  /libcore/luni/src/main/java/java/nio/channels/spi/
AbstractSelectionKey.java 57 public final void cancel() { method in class:AbstractSelectionKey
60 ((AbstractSelector) selector()).cancel(this);
  /packages/apps/Calendar/src/com/android/calendar/alerts/
NotificationMgr.java 23 public abstract void cancel(int id); method in class:NotificationMgr
38 cancel(i);
  /packages/apps/DeskClock/src/com/android/deskclock/
ToastMaster.java 31 sToast.cancel();
37 sToast.cancel();
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 8 * called for any given load depending on whether or not the corresponding resource is cached. Cancel also may or may
65 * The best way to use this method is to cancel any loads that have not yet started, but allow those that are in
75 void cancel(); method in interface:DataFetcher
  /external/robolectric/src/main/java/android/os/
TestVibrator.java 6 public void cancel() { method in class:TestVibrator
  /frameworks/base/core/java/android/app/job/
JobScheduler.java 69 * Cancel a job that is pending in the JobScheduler.
74 public abstract void cancel(int jobId); method in class:JobScheduler
77 * Cancel all jobs that have been registered with the JobScheduler by this package.
IJobScheduler.aidl 27 void cancel(int jobId);
  /frameworks/base/core/tests/coretests/src/android/view/
MutateDrawable.java 37 Button cancel = new Button(this); local
38 cancel.setId(R.id.b);
39 cancel.setBackgroundDrawable(getResources().getDrawable(
43 layout.addView(cancel);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
MmiCode.java 56 public void cancel(); method in interface:MmiCode
  /packages/apps/Browser/src/com/android/browser/
ShortcutActivity.java 40 View cancel = findViewById(R.id.cancel); local
41 if (cancel != null) {
42 cancel.setOnClickListener(this);
67 case R.id.cancel:
  /frameworks/support/v4/java/android/support/v4/os/
CancellationSignal.java 64 public void cancel() { method in class:CancellationSignal
82 CancellationSignalCompatJellybean.cancel(obj);
100 * If {@link CancellationSignal#cancel} has already been called, then the provided
142 CancellationSignalCompatJellybean.cancel(mCancellationSignalObj);
163 * Called when {@link CancellationSignal#cancel} is invoked.
  /external/zxing/qr_scanner/src/com/google/zxing/client/android/
InactivityTimer.java 51 cancel(); method
65 cancel(); method
74 private void cancel() { method in class:InactivityTimer
77 future.cancel(true);
83 cancel(); method
103 InactivityTimer.this.cancel();
  /frameworks/base/core/java/android/speech/
IRecognitionService.aidl 59 void cancel(in IRecognitionListener listener);
  /frameworks/support/v4/java/android/support/v4/app/
INotificationSideChannel.aidl 34 * Cancel an already-notified notification.
36 void cancel(String packageName, int id, String tag);
39 * Cancel all notifications for the given package.

Completed in 1099 milliseconds

1 2 3 4 5 6 7 8 91011>>