HomeSort by relevance Sort by last modified time
    Searched full:cancel (Results 26 - 50 of 5382) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/samples/browseable/DoneBar/res/menu/
cancel.xml 18 <item android:id="@+id/cancel"
19 android:title="@string/cancel"
  /development/samples/browseable/DoneBar/res/values/
strings.xml 20 <string name="cancel">Cancel</string>
  /external/tpm2/
PlatformData.h 14 // From Cancel.c Cancel flag. It is initialized as FALSE, which indicate the command is not being canceled
PlatformData.c 12 // From Cancel.c
  /external/valgrind/drd/tests/
pth_cancel_locked.c 0 /** Cancel a thread that holds a lock on a mutex. */
42 /* Cancel the created thread. */
  /frameworks/support/compat/jellybean/android/support/v4/os/
CancellationSignalCompatJellybean.java 24 public static void cancel(Object cancellationSignalObj) { method in class:CancellationSignalCompatJellybean
25 ((android.os.CancellationSignal)cancellationSignalObj).cancel(); method
  /packages/apps/DeskClock/src/com/android/deskclock/widget/toast/
ToastManager.java 31 sToast.cancel();
37 sToast.cancel();
  /external/opencv3/modules/java/generator/src/java/
android+InstallCallbackInterface.java 29 public void cancel(); method in interface:InstallCallbackInterface
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSslErrorHandler.java 15 public void cancel() { method in class:ShadowSslErrorHandler
  /packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/settings/
ExtendedViewHolder.java 59 mScalingDownAnimator.cancel();
66 mScalingUpAnimator.cancel();
70 mScalingUpAnimator.cancel();
78 mScalingDownAnimator.cancel();
  /packages/apps/Settings/src/com/android/settings/
CancellablePreference.java 54 ImageView cancel = (ImageView) view.findViewById(R.id.cancel); local
55 cancel.setVisibility(mCancellable ? View.VISIBLE : View.INVISIBLE);
56 cancel.setOnClickListener(this);
  /external/libchrome/base/files/
file_path_watcher_mac.cc 37 void Cancel() override {
39 impl_->Cancel();
45 impl_->Cancel();
  /frameworks/base/core/java/android/webkit/
SslErrorHandler.java 26 * either {@link #proceed} or {@link #cancel} to set the WebView's response
43 * Cancel this request and all pending requests for the WebView that had
46 public void cancel() {} method in class:SslErrorHandler
  /frameworks/support/compat/java/android/support/v4/app/
INotificationSideChannel.aidl 34 * Cancel an already-notified notification.
36 void cancel(String packageName, int id, String tag);
39 * Cancel all notifications for the given package.
  /packages/experimental/PrintService/res/values/
strings.xml 27 <string name="cancel_yes">Cancel</string>
28 <string name="cancel_no">Don\'t cancel</string>
33 <string name="on_cancle_print_job_requested_activity_title">Print job cancel reqeusted. What to do?</string>
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
BluetoothDiscoverableTimeoutReceiver.java 46 // Cancel any previous alarms that do the same thing.
47 alarmManager.cancel(pending);
48 Log.d(TAG, "setDiscoverableAlarm(): cancel prev alarm");
64 // Cancel any previous alarms that do the same thing.
68 alarmManager.cancel(pending);
  /frameworks/volley/src/test/java/com/android/volley/
RequestQueueTest.java 67 verify(req1).cancel(); // A cancelled
68 verify(req3).cancel(); // A cancelled
69 verify(req2, never()).cancel(); // B not cancelled
70 verify(req4, never()).cancel(); // A added after cancel not cancelled
  /frameworks/base/core/java/android/print/
PrintJob.java 83 public void cancel() { method in class:PrintJob
108 * {@link #cancel()}.
112 * @see #cancel()
121 * {@link #cancel()}.
125 * @see #cancel()
134 * {@link #cancel()}.
138 * @see #cancel()
146 * is successfully printed. You can neither cancel nor restart
158 * a restart via {@link #restart()} or cancel via {@link #cancel()}
    [all...]
  /external/libchrome/base/
cancelable_callback.h 7 // wrapped callback until this object is destroyed or Reset()/Cancel() are
12 // Calling CancelableCallback::Cancel() brings the object back to its natural,
39 // timeout.Cancel(); // Hopefully this is hit before the timeout callback runs.
74 void Cancel() {
91 Cancel();
93 // |forwarder_| is no longer valid after Cancel(), so re-bind.
99 // Returns a callback that can be disabled by calling Cancel().
  /frameworks/base/tests/utils/SleepUtils/WakeLoopService/src/android/test/wakeuploop/
WakeUpCall.java 42 static final String CANCEL = "CANCEL";
47 boolean cancel = intent.hasExtra(CANCEL);
48 if (!cancel) {
84 // cancel alarms
86 am.cancel(PendingIntent.getBroadcast(context, 0, intent, 0));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
TimerProxy.java 55 * Cancel timers for detecting a long pressed key and a long press shift key.
56 * @param tracker cancel long press timers of this {@link PointerTracker}.
61 * Cancel a timer for detecting a long pressed shift key.
66 * Cancel timers for detecting repeated key press, long pressed key, and long pressed shift key.
77 * Cancel a timer of detecting double tapped shift key.
94 * Cancel a timer of firing updating batch input.
100 * Cancel all timers of firing updating batch input.
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
24 self.cancel = cancel
80 if self.cancel is None:
83 self.done(self.cancel)
101 buttons=["Yes", "No", "Cancel"],
103 cancel=2,
  /prebuilts/gdb/linux-x86/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
24 self.cancel = cancel
80 if self.cancel is None:
83 self.done(self.cancel)
101 buttons=["Yes", "No", "Cancel"],
103 cancel=2,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
24 self.cancel = cancel
80 if self.cancel is None:
83 self.done(self.cancel)
101 buttons=["Yes", "No", "Cancel"],
103 cancel=2,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
24 self.cancel = cancel
80 if self.cancel is None:
83 self.done(self.cancel)
101 buttons=["Yes", "No", "Cancel"],
103 cancel=2,

Completed in 596 milliseconds

12 3 4 5 6 7 8 91011>>