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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/os/
ICancellationSignal.aidl 23 oneway void cancel();
Vibrator.java 80 public abstract void cancel(); method in class:Vibrator
CancellationSignal.java 23 * Provides the ability to cancel an operation in progress.
63 public void cancel() { method in class:CancellationSignal
82 remote.cancel();
102 * If {@link CancellationSignal#cancel} has already been called, then the provided
128 * If {@link CancellationSignal#cancel} has already been called, then the provided
151 remote.cancel();
197 * Called when {@link CancellationSignal#cancel} is invoked.
206 public void cancel() throws RemoteException { method in class:CancellationSignal.Transport
207 mCancellationSignal.cancel();
  /packages/apps/Mms/src/com/android/mms/util/
ItemLoadedFuture.java 32 void cancel(); method in interface:ItemLoadedFuture
NullItemLoadedFuture.java 26 public void cancel() { method in class:NullItemLoadedFuture
27 // The callback has already been made, so there's nothing to cancel.
  /frameworks/base/core/java/android/webkit/
SslErrorHandler.java 39 * Cancel this request and all pending requests for the WebView that had
42 public void cancel() {} method in class:SslErrorHandler
HttpAuthHandler.java 24 * which must call either {@link #proceed(String, String)} or {@link #cancel()}.
43 * Cancel the authorization request.
45 public void cancel() { method in class:HttpAuthHandler
  /external/webkit/Source/WebKit/chromium/public/
WebFileWriter.h 50 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
51 // Do not call cancel when there is no write or truncate in progress.
52 virtual void cancel() = 0;
WebNotificationPresenter.h 57 virtual void cancel(const WebNotification&) = 0;
  /frameworks/base/test-runner/src/android/test/mock/
MockDialogInterface.java 13 public void cancel() { method in class:MockDialogInterface
  /packages/apps/Gallery2/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
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
TimerTaskTest.java 74 * @tests java.util.TimerTask#cancel()
79 // Ensure cancel returns false if never scheduled
81 assertTrue("Unsheduled tasks should return false for cancel()",
82 !testTask.cancel());
88 assertTrue("TimerTask should not have run yet", testTask.cancel());
89 t.cancel();
102 "TimerTask.cancel() should return false if task has run",
103 testTask.cancel());
105 "TimerTask.cancel() should return false if called a second time",
106 testTask.cancel());
    [all...]
TimerTest.java 64 timer.cancel();
111 t.cancel();
114 t.cancel();
137 t.cancel();
140 t.cancel();
162 t.cancel();
165 t.cancel();
186 t.cancel();
189 t.cancel();
210 * @tests java.util.Timer#cancel()
329 tasks[i].cancel(); method
    [all...]
  /libcore/luni/src/test/java/tests/api/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 65 timer.cancel();
112 t.cancel();
115 t.cancel();
138 t.cancel();
141 t.cancel();
163 t.cancel();
166 t.cancel();
201 t.cancel();
204 t.cancel();
216 * java.util.Timer#cancel()
335 tasks[i].cancel(); method
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Authentication/
AuthenticationDecisionListener.cpp 48 void AuthenticationDecisionListener::cancel() function in class:WebKit::AuthenticationDecisionListener
51 m_challengeProxy->cancel();
  /frameworks/base/core/java/com/android/internal/policy/
IFaceLockCallback.aidl 23 void cancel();
  /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 6 public void cancel(int id); method in interface:NotificationMgr
7 public void cancel(String tag, int id); method in interface:NotificationMgr
  /packages/apps/DeskClock/src/com/android/deskclock/
ToastMaster.java 31 sToast.cancel();
37 sToast.cancel();
  /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/base/telephony/java/com/android/internal/telephony/
MmiCode.java 51 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:
  /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);

Completed in 890 milliseconds

1 2 3 4 5 6 7 8 91011>>