Searched refs:cancel (Results 1 - 25 of 144) sorted by relevance

123456

/frameworks/base/core/java/android/webkit/
H A DSslErrorHandler.java42 public void cancel() {} method in class:SslErrorHandler
H A DHttpAuthHandler.java24 * which must call either {@link #proceed(String, String)} or {@link #cancel()}.
45 public void cancel() { method in class:HttpAuthHandler
H A DJsResult.java24 // Tells us if the user tried to confirm or cancel the result before WebCore
40 public final void cancel() { method in class:JsResult
H A DWebViewClient.java103 * trying to load the resource. The default behavior is to send the cancel
107 * @param cancelMsg The message to send if the host wants to cancel
110 * a redirect loop, it will cancel the load.
190 * resource. The host application must call either handler.cancel() or
192 * response to future SSL errors. The default behavior is to cancel the
202 handler.cancel();
218 * has to call either handler.cancel() or handler.proceed() as the
220 * default behavior is to cancel, returning no client certificate.
231 handler.cancel();
236 * default behavior is to cancel th
[all...]
/frameworks/base/test-runner/src/android/test/mock/
H A DMockDialogInterface.java13 public void cancel() { method in class:MockDialogInterface
/frameworks/base/core/java/com/android/internal/policy/
H A DIFaceLockCallback.aidl23 void cancel();
/frameworks/base/core/tests/coretests/src/android/view/
H A DMutateDrawable.java37 Button cancel = new Button(this);
38 cancel.setId(R.id.b);
39 cancel.setBackgroundDrawable(getResources().getDrawable(
43 layout.addView(cancel);
/frameworks/base/telephony/java/com/android/internal/telephony/
H A DMmiCode.java51 public void cancel(); method in interface:MmiCode
/frameworks/base/core/java/android/speech/
H A DIRecognitionService.aidl59 void cancel(in IRecognitionListener listener);
/frameworks/base/core/java/android/accounts/
H A DAccountManagerFuture.java31 * <tt>cancel</tt> method. Additional methods are provided to
41 * Attempts to cancel execution of this task. This attempt will
44 * and this task has not started when <tt>cancel</tt> is called,
61 boolean cancel(boolean mayInterruptIfRunning); method in interface:AccountManagerFuture
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DIntentSenderTest.java37 is.cancel();
57 is.cancel();
66 is.cancel();
84 is.cancel();
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardParser.java92 * Actual cancel is done after parsing the current vcard.
95 public abstract void cancel(); method in class:VCardParser
H A DVCardParser_V21.java117 public void cancel() { method in class:VCardParser_V21
118 mVCardParserImpl.cancel();
H A DVCardParser_V30.java96 public void cancel() { method in class:VCardParser_V30
97 mVCardParserImpl.cancel();
H A DVCardParser_V40.java84 public void cancel() { method in class:VCardParser_V40
85 mVCardParserImpl.cancel();
/frameworks/base/core/java/android/app/
H A DNotificationManager.java51 * to the {@link #cancel(int)} or {@link #cancel(String, int)} method to clear
137 public void cancel(int id) method in class:NotificationManager
139 cancel(null, id);
147 public void cancel(String tag, int id) method in class:NotificationManager
151 if (localLOGV) Log.v(TAG, pkg + ": cancel(" + id + ")");
159 * Cancel all previously shown notifications. See {@link #cancel} for the
/frameworks/base/core/java/android/content/
H A DDialogInterface.java58 public void cancel(); method in interface:DialogInterface
/frameworks/base/core/tests/coretests/src/android/animation/
H A DViewPropertyAnimatorTest.java74 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...]
H A DEventsTest.java71 mAnim.cancel();
204 * Verify that calling cancel on an unstarted animator does nothing.
209 mAnimator.cancel();
222 * Verify that calling cancel on a started animator does the right thing.
234 mAnimator.cancel();
280 mAnimator.cancel();
408 * Same as testPlayingDelayedCancel, but cancel during the startDelay period
419 // the listeners with cancel/end callbacks since they won't be called
446 // the listeners with cancel/end callbacks since they won't be called
474 mAnimator.cancel();
[all...]
/frameworks/base/core/java/android/os/
H A DCountDownTimer.java75 public final void cancel() { method in class:CountDownTimer
/frameworks/base/core/java/com/android/internal/app/
H A DAlertActivity.java53 public void cancel() { method in class:AlertActivity
/frameworks/base/core/java/com/android/server/
H A DResettableTimeout.java83 public void cancel() method in class:ResettableTimeout
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DTestAlertActivity.java28 nm.cancel(mId);
H A DNotificationBuilderTest.java110 mNM.cancel(1);
113 mNM.cancel(2);
116 mNM.cancel(3);
119 mNM.cancel(4);
122 mNM.cancel(5);
125 mNM.cancel(6);
128 mNM.cancel(7);
131 mNM.cancel(8);
134 mNM.cancel(9);
137 mNM.cancel(1
[all...]
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java679 // If there's an animation running on this view already, cancel it
682 currentAnimation.cancel();
685 // Cache the animation in case we need to cancel it later
743 prevAnimation.cancel();
749 // Cache the animation in case we need to cancel it later
859 * Cancels the currently running transition. Note that we cancel() the changing animations
866 public void cancel() { method in class:LayoutTransition
871 anim.cancel();
894 * Cancels the specified type of transition. Note that we cancel() the changing animations
901 public void cancel(in method in class:LayoutTransition
[all...]

Completed in 9648 milliseconds

123456