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

1 2 3 4 5 6 7 8 91011>>

  /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/chromium/chrome/browser/resources/options/
language_add_language_overlay.html 5 <button id="add-language-overlay-cancel-button"
6 i18n-content="cancel"></button>
18 <button id="add-language-overlay-cancel-button" i18n-content="cancel">
instant_confirm_overlay.html 11 <button id="instantConfirmCancel" i18n-content="cancel"
12 class="cancel-button"></button>
certificate_restore_overlay.html 12 i18n-content="cancel"></button>
  /external/dbus/test/data/auth/
cancel.auth-script 7 SEND 'CANCEL'
  /development/samples/MySampleRss/res/values/
strings.xml 11 <string name="cancel">Cancel</string>
  /external/chromium/chrome/browser/extensions/
gtk_theme_installed_infobar_delegate.cc 18 bool GtkThemeInstalledInfoBarDelegate::Cancel() {
23 return ThemeInstalledInfoBarDelegate::Cancel();
  /external/nist-sip/java/javax/sip/message/
Request.java 9 String CANCEL = "CANCEL";
  /external/chromium/chrome/browser/download/
download_item_model.h 25 // Cancel the task corresponding to the item.
45 // Cancel the downloading.
55 // This class is a model class for DownloadItemView. It provides cancel
63 // Cancel the page saving.
  /external/nist-sip/java/gov/nist/javax/sip/
ServerTransactionExt.java 9 * incoming CANCEL server transaction.
  /external/webkit/LayoutTests/fast/events/touch/
send-oncancel-event-expected.txt 1 Tests that the cancel touch event is sent correctly.
  /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);
  /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:
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 27 * Class that helps post {@link Runnable}s to a {@link Handler}, and cancel pending ones
49 public void cancel() { method in class:DelayedOperations.QueuedOperation
69 * Cancel a runnable that's been posted with {@link #post(Runnable)}.
82 found.cancel();
87 * Cancel all pending {@link Runnable}s.
93 qo.cancel();
  /external/chromium/chrome/browser/ui/cocoa/location_bar/
instant_opt_in_controller.h 14 // and Cancel buttons are pushed.
39 - (IBAction)cancel:(id)sender;
  /external/valgrind/main/drd/tests/
pth_cancel_locked.c 0 /** Cancel a thread that holds a lock on a mutex. */
42 /* Cancel the created thread. */
  /external/webkit/LayoutTests/fast/dom/beforeload/
remove-frame-in-beforeload-listener.html 11 // Note, we intentionally do not cancel the load here,
12 // WebCore should automatically cancel it.
  /packages/apps/DeskClock/src/com/android/deskclock/
ToastMaster.java 31 sToast.cancel();
37 sToast.cancel();
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
YesNoCancelDialogBuilder.java 10 * Alert dialog builder that builds a simple Yes/No/Cancel dialog.
31 .setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
  /external/chromium/chrome/browser/
repost_form_warning_controller.cc 28 Cancel();
36 void RepostFormWarningController::Cancel() {
62 Cancel();
67 // Make sure we won't do anything when |Cancel()| is called again.
  /external/chromium/chrome/browser/resources/chromeos/
choose_mobile_network.js 58 ChooseNetwork.cancel = function() {
59 chrome.send('cancel');
72 $('cancel').addEventListener('click', function(event) {
73 ChooseNetwork.cancel();
  /external/chromium/chrome/browser/resources/
http_auth.html 31 $('cancel').disabled = true;
52 $('cancel').onclick = function() {
86 <input id="cancel" type="button" i18n-values="value:cancel">

Completed in 6371 milliseconds

1 2 3 4 5 6 7 8 91011>>