Searched defs:cancel (Results 26 - 50 of 65) sorted by relevance

123

/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java173 public boolean cancel() { method in class:UsbRequest
/frameworks/support/volley/tests/src/com/android/volley/mock/
H A DMockRequest.java79 public void cancel() { method in class:MockRequest
81 super.cancel();
/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DEnableAccessibilityController.java180 cancel();
187 cancel();
192 cancel();
197 cancel();
203 private void cancel() { method in class:EnableAccessibilityController
/frameworks/base/core/java/android/net/http/
H A DConnection.java147 void cancel() { method in class:Connection
151 "Connection.cancel(): connection closed " + mHost);
173 /* If a request was cancelled, give other cancel requests
H A DRequest.java362 * Data will not be sent to or received from server after cancel()
367 synchronized void cancel() { method in class:Request
369 HttpLog.v("Request.cancel(): " + getUri());
379 mConnection.cancel();
H A DRequestHandle.java98 public void cancel() { method in class:RequestHandle
100 mRequest.cancel();
/frameworks/base/core/java/android/os/
H A DAsyncTask.java73 * // Escape early if cancel() is called
135 * <p>A task can be cancelled at any time by invoking {@link #cancel(boolean)}. Invoking
389 * <p>Runs on the UI thread after {@link #cancel(boolean)} is invoked and
399 * @see #cancel(boolean)
412 * <p>Runs on the UI thread after {@link #cancel(boolean)} is invoked and
416 * @see #cancel(boolean)
424 * normally. If you are calling {@link #cancel(boolean)} on the task,
430 * @see #cancel(boolean)
437 * <p>Attempts to cancel execution of this task. This attempt will
440 * and this task has not started when <tt>cancel</t
465 public final boolean cancel(boolean mayInterruptIfRunning) { method in class:AsyncTask
[all...]
/frameworks/base/core/java/android/speech/
H A DRecognitionService.java127 if (DBG) Log.d(TAG, "cancel called with no preceding startListening - ignoring");
129 Log.w(TAG, "cancel called by client who did not call startListening - ignoring");
184 * Notifies the service that it should cancel the speech recognition.
331 public void cancel(IRecognitionListener listener) { method in class:RecognitionService.RecognitionServiceBinder
332 if (DBG) Log.d(TAG, "cancel called by:" + listener.asBinder());
H A DSpeechRecognizer.java312 public void cancel() { method in class:SpeechRecognizer
366 mService.cancel(mListener);
367 if (DBG) Log.d(TAG, "service cancel command succeded");
369 Log.e(TAG, "cancel() failed", e);
/frameworks/base/core/java/android/widget/
H A DToast.java121 public void cancel() { method in class:Toast
/frameworks/base/test-runner/src/android/test/
H A DIsolatedContext.java165 public boolean cancel(boolean mayInterruptIfRunning) { method in class:IsolatedContext.MockAccountManager.MockAccountManagerFuture
/frameworks/base/voip/java/com/android/server/sip/
H A DSipWakeupTimer.java79 mAlarmManager.cancel(mPendingIntent);
96 mAlarmManager.cancel(mPendingIntent);
188 public synchronized void cancel(Runnable callback) { method in class:SipWakeupTimer
190 if (DEBUG_TIMER) Log.d(TAG, "cancel:" + callback);
198 if (DEBUG_TIMER) Log.d(TAG, " cancel found:" + event);
213 Log.d(TAG, "after cancel:");
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCdmaMmiCode.java158 cancel() { method in class:CdmaMmiCode
/frameworks/support/v4/java/android/support/v4/content/
H A DModernAsyncTask.java229 * <p>Runs on the UI thread after {@link #cancel(boolean)} is invoked and
239 * @see #cancel(boolean)
252 * <p>Runs on the UI thread after {@link #cancel(boolean)} is invoked and
256 * @see #cancel(boolean)
264 * normally. If you are calling {@link #cancel(boolean)} on the task,
270 * @see #cancel(boolean)
277 * <p>Attempts to cancel execution of this task. This attempt will
280 * and this task has not started when <tt>cancel</tt> is called,
305 public final boolean cancel(boolean mayInterruptIfRunning) { method in class:ModernAsyncTask
306 return mFuture.cancel(mayInterruptIfRunnin
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DGestureDetectorCompat.java392 cancel();
399 private void cancel() { method in class:GestureDetectorCompat.GestureDetectorCompatImplBase
/frameworks/base/core/java/android/animation/
H A DAnimatorSet.java61 * cancel or end when cancel() or end() is called on this AnimatorSet
98 * terminated (by calling cancel() or end()).
100 * child animations of this AnimatorSet end. It also determines whether cancel/end
288 public void cancel() { method in class:AnimatorSet
299 // If we're currently in the startDelay period, just cancel that animator and
301 mDelayAnim.cancel();
304 node.animation.cancel();
337 mDelayAnim.cancel();
651 * Ignore cancel event
[all...]
H A DLayoutTransition.java852 // If there's an animation running on this view already, cancel it
855 currentAnimation.cancel();
858 // Cache the animation in case we need to cancel it later
923 prevAnimation.cancel();
929 // Cache the animation in case we need to cancel it later
1047 * Cancels the currently running transition. Note that we cancel() the changing animations
1054 public void cancel() { method in class:LayoutTransition
1059 anim.cancel();
1082 * Cancels the specified type of transition. Note that we cancel() the changing animations
1089 public void cancel(in method in class:LayoutTransition
[all...]
H A DValueAnimator.java126 * has been cancel()'d or end()'d since the last animation frame. Possible values are
927 public void cancel() { method in class:ValueAnimator
928 // Only cancel if the animation is actually running or has been started and is about
/frameworks/base/core/java/android/app/
H A DLoaderManager.java342 void cancel() { method in class:LoaderManagerImpl.LoaderInfo
406 // waiting for the old one to cancel or complete before starting
682 if (DEBUG) Log.v(TAG, " Current loader is running; attempting to cancel");
683 info.cancel();
H A DPendingIntent.java56 * {@link #cancel} to remove it.
83 * cancel or modify whatever current PendingIntent is associated with the
522 * owning a PendingIntent can cancel it.
524 public void cancel() { method in class:PendingIntent
/frameworks/base/core/java/android/hardware/input/
H A DInputManager.java813 public void cancel() { method in class:InputManager.InputDeviceVibrator
817 Log.w(TAG, "Failed to cancel vibration.", ex);
/frameworks/base/core/java/android/view/
H A DGestureDetector.java620 cancel();
630 private void cancel() { method in class:GestureDetector
/frameworks/base/core/java/android/view/textservice/
H A DSpellCheckerSession.java160 public void cancel() { method in class:SpellCheckerSession
161 mSpellCheckerSessionListenerImpl.cancel();
269 Log.e(TAG, "Failed to cancel " + e);
352 public void cancel() { method in class:SpellCheckerSession.SpellCheckerSessionListenerImpl
354 Log.w(TAG, "cancel");
/frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
H A DWebViewEventSender.java300 tp.cancel();
391 public void cancel() { mCancelled = true; } method in class:WebViewEventSender.TouchPoint
/frameworks/support/volley/src/com/android/volley/
H A DRequest.java96 * Set a tag on this request. Can be used to cancel all requests with this
221 public void cancel() { method in class:Request

Completed in 2250 milliseconds

123