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

1234567891011>>

/external/smack/src/org/jivesoftware/smackx/pubsub/
H A DFormType.java25 form, submit, cancel, result; enum constant in enum:FormType
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTimerTaskTest.java74 * @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...]
H A DTimerTest.java64 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()
[all...]
/external/webkit/Source/WebKit2/UIProcess/Authentication/
H A DAuthenticationDecisionListener.cpp48 void AuthenticationDecisionListener::cancel() function in class:WebKit::AuthenticationDecisionListener
51 m_challengeProxy->cancel();
H A DAuthenticationDecisionListener.h48 void cancel();
/external/robolectric/src/main/java/android/os/
H A DTestVibrator.java6 public void cancel() { method in class:TestVibrator
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DInactivityTimer.java51 cancel();
65 cancel();
74 private void cancel() { method in class:InactivityTimer
77 future.cancel(true);
83 cancel();
103 InactivityTimer.this.cancel();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowJsResult.java13 public void cancel() { method in class:ShadowJsResult
H A DShadowSslErrorHandler.java15 public void cancel() { method in class:ShadowSslErrorHandler
H A DShadowNotificationManager.java35 public void cancel(int id) method in class:ShadowNotificationManager
37 cancel(null, id);
41 public void cancel(String tag, int id) { method in class:ShadowNotificationManager
H A DShadowVibrator.java30 public void cancel() { method in class:ShadowVibrator
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileWriter.h50 // Cancel will attempt to abort a running write or truncate. However, it may not be possible to cancel an in-progress action, or the call may have come in too late. Partial writes are possible.
51 // Do not call cancel when there is no write or truncate in progress.
52 virtual void cancel() = 0;
H A DWebNotificationPresenter.h57 virtual void cancel(const WebNotification&) = 0;
H A DWebURLLoader.h63 virtual void cancel() = 0;
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKAuthenticationDecisionListener.cpp46 toImpl(authenticationListener)->cancel();
H A DWKDownload.cpp52 return toImpl(download)->cancel();
H A DWKOpenPanelResultListener.cpp46 toImpl(listenerRef)->cancel();
/external/dropbear/debian/
H A Ddropbear.init17 cancel() { echo "$1" >&2; exit 0; };
19 test -x "$DAEMON" || cancel "$DAEMON does not exist or is not executable."
21 cancel '/var/service/dropbear exists, service is controlled through runit.'
32 test "$NO_START" = "0" || cancel 'NO_START is not set to zero.'
45 test "$NO_START" = "0" || cancel 'NO_START is not set to zero.'
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTransformAsyncFunctionTest.java80 inputFuture.cancel(true); // argument is ignored
91 outputFuture.cancel(true); // argument is ignored
100 assertTrue(resultFuture.cancel(true));
113 assertTrue(resultFuture.cancel(true));
135 assertTrue(resultFuture.cancel(true));
155 assertFalse(resultFuture.cancel(true));
/external/jmdns/src/javax/jmdns/impl/tasks/state/
H A DCanceler.java61 * @see java.util.TimerTask#cancel()
64 public boolean cancel() { method in class:Canceler
67 return super.cancel();
140 cancel();
/external/chromium/chrome/browser/ui/cocoa/location_bar/
H A Dinstant_opt_in_controller.h39 - (IBAction)cancel:(id)sender;
/external/chromium/webkit/glue/
H A Dweburlloader_impl.h27 virtual void cancel();
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DJsResultTest.java22 jsResult.cancel();
/external/webkit/Source/WebCore/notifications/
H A DNotificationPresenter.h61 virtual void cancel(Notification*) = 0;
/external/webkit/Source/WebCore/platform/network/android/
H A DResourceLoaderAndroid.h43 virtual void cancel() = 0;

Completed in 518 milliseconds

1234567891011>>