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

1 2 3 4 5 6 7 8 91011>>

  /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;
WebURLLoader.h 63 virtual void cancel() = 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/guava/src/com/google/common/util/concurrent/
ValueFuture.java 74 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ValueFuture
75 return super.cancel();
AbstractCheckedFuture.java 63 cancel(true);
80 cancel(true);
91 public boolean cancel(boolean mayInterruptIfRunning) { method in class:AbstractCheckedFuture
92 return delegate.cancel(mayInterruptIfRunning);
  /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/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:
  /frameworks/base/core/java/android/speech/
IRecognitionService.aidl 59 void cancel(in IRecognitionListener listener);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKAuthenticationDecisionListener.cpp 46 toImpl(authenticationListener)->cancel();
WKDownload.cpp 52 return toImpl(download)->cancel();
WKOpenPanelResultListener.cpp 46 toImpl(listenerRef)->cancel();
  /libcore/luni/src/main/java/java/util/concurrent/
Future.java 16 * <tt>cancel</tt> method. Additional methods are provided to
70 * Attempts to cancel execution of this task. This attempt will
73 * and this task has not started when <tt>cancel</tt> is called,
90 boolean cancel(boolean mayInterruptIfRunning); method in interface:Future

Completed in 976 milliseconds

1 2 3 4 5 6 7 8 91011>>