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

1234

/frameworks/base/test-runner/src/android/test/mock/
H A DMockDialogInterface.java13 public void cancel() { method in class:MockDialogInterface
/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/pim/vcard/
H A DVCardParser.java51 * Actual cancel is done after parsing the current vcard.
54 public abstract void cancel(); method in interface:VCardParser
H A DVCardParser_V30.java84 public void cancel() { method in class:VCardParser_V30
85 mVCardParserImpl.cancel();
H A DVCardParser_V40.java75 public void cancel() { method in class:VCardParser_V40
76 mVCardParserImpl.cancel();
H A DVCardParser_V21.java106 public void cancel() { method in class:VCardParser_V21
107 mVCardParserImpl.cancel();
/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/java/android/webkit/
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.java83 * trying to load the resource. The default behavior is to send the cancel
87 * @param cancelMsg The message to send if the host wants to cancel
90 * a redirect loop, it will cancel the load.
171 * host application has to call either handler.cancel() or handler.proceed()
173 * behavior is to cancel the load.
182 handler.cancel();
187 * default behavior is to cancel the request.
197 handler.cancel();
/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/base/core/java/android/app/
H A DNotificationManager.java48 * id you pass to the {@link #cancel} method to clear this notification.
102 * can be used to cancel the notification
124 public void cancel(int id) method in class:NotificationManager
126 cancel(null, id);
134 public void cancel(String tag, int id) method in class:NotificationManager
138 if (localLOGV) Log.v(TAG, pkg + ": cancel(" + id + ")");
146 * Cancel all previously shown notifications. See {@link #cancel} for the
H A DAlarmManager.java128 * @see #cancel
152 * repeating until explicitly removed with {@link #cancel}. If the time
181 * @see #cancel
242 * @see #cancel
274 public void cancel(PendingIntent operation) { method in class:AlarmManager
H A DDialog.java90 * Whether to cancel the dialog when a touch is received outside of the
541 cancel();
552 * The default implementation will cancel the dialog when a touch
558 cancel();
930 * @param cancel Whether the dialog should be canceled when touched outside
933 public void setCanceledOnTouchOutside(boolean cancel) { argument
934 if (cancel && !mCancelable) {
938 mCanceledOnTouchOutside = cancel;
945 public void cancel() { method in class:Dialog
/frameworks/base/core/java/android/content/
H A DDialogInterface.java58 public void cancel(); method in interface:DialogInterface
/frameworks/base/core/java/android/os/
H A DCountDownTimer.java75 public final void cancel() { method in class:CountDownTimer
H A DVibrator.java94 public void cancel() method in class:Vibrator
102 Log.w(TAG, "Failed to cancel vibration.", e);
H A DAsyncTask.java283 * Runs on the UI thread after {@link #cancel(boolean)} is invoked.
285 * @see #cancel(boolean)
297 * @see #cancel(boolean)
304 * Attempts to cancel execution of this task. This attempt will
307 * and this task has not started when <tt>cancel</tt> is called,
324 public final boolean cancel(boolean mayInterruptIfRunning) { method in class:AsyncTask
325 return mFuture.cancel(mayInterruptIfRunning);
/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 DNotificationTestList.java358 mNM.cancel(1);
372 new Test("Vibrate and cancel") {
380 mNM.cancel(1);
415 mVibrator.cancel();
421 mNM.cancel(1);
430 mNM.cancel(1);
438 mNM.cancel(2);
562 mNM.cancel(1);
570 mNM.cancel(2);
574 // Repeatedly notify and cancel
[all...]
/frameworks/base/core/java/android/preference/
H A DSeekBarPreference.java40 setNegativeButtonText(android.R.string.cancel);
/frameworks/base/core/java/android/view/
H A DGestureDetector.java461 cancel();
583 cancel();
588 private void cancel() { method in class:GestureDetector

Completed in 1073 milliseconds

1234