HomeSort by relevance Sort by last modified time
    Searched defs:cancel (Results 176 - 200 of 1695) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/jmdns/src/javax/jmdns/impl/tasks/resolver/
DNSResolverTask.java 62 this.cancel();
78 this.cancel();
  /external/jmdns/src/javax/jmdns/impl/tasks/state/
Canceler.java 61 * @see java.util.TimerTask#cancel()
64 public boolean cancel() { method in class:Canceler
67 return super.cancel();
140 cancel(); method
Renewer.java 65 public boolean cancel() { method in class:Renewer
68 return super.cancel();
141 cancel(); method
  /external/llvm/utils/lit/lit/
run.py 59 def cancel(self): member in class:TestProvider
247 provider.cancel()
254 provider.cancel()
267 # Cancel the timeout handler.
269 timeout_timer.cancel()
  /external/parameter-framework/asio-1.10.6/include/asio/
basic_socket_acceptor.hpp 513 /// Cancel all asynchronous operations associated with the acceptor.
521 void cancel() function in class:asio::basic_socket_acceptor
524 this->get_service().cancel(this->get_implementation(), ec);
525 asio::detail::throw_error(ec, "cancel");
528 /// Cancel all asynchronous operations associated with the acceptor.
536 asio::error_code cancel(asio::error_code& ec) function in class:asio::basic_socket_acceptor
538 return this->get_service().cancel(this->get_implementation(), ec);
    [all...]
  /external/pdfium/fxjs/xfa/
cjx_source.cpp 17 {"cancel", cancel_static},
92 CJS_Return CJX_Source::cancel(CJS_V8* runtime, function in class:CJX_Source
  /external/python/cpython2/Lib/distutils/command/
bdist_msi.py 25 then a list of buttons: back, next, cancel. Optionally a bitmap at the
29 default, cancel, bitmap=true)"""
54 def cancel(self, title, next, name = "Cancel", active = 1): member in class:PyDialog
55 """Add a cancel button with a given title, the tab-next button,
469 fatal.cancel("Cancel", "Back", active = 0)
474 c=fatal.next("Finish", "Cancel", name="Finish")
481 user_exit.cancel("Cancel", "Back", active = 0
    [all...]
  /external/python/cpython2/Lib/lib-tk/
Tkdnd.py 95 At any time during a dnd sequence, the application can cancel the
96 sequence by calling the cancel() method on the object returned by
181 def cancel(self, event=None): member in class:DndHandler
  /external/python/cpython2/Tools/webchecker/
wsgui.py 21 "Exception used to cancel run()."
109 self.cancel_button = Button(top, text="Cancel",
110 command=self.cancel,
171 def cancel(self): member in class:App
231 app.cancel()
  /external/python/cpython3/Lib/distutils/command/
bdist_msi.py 23 then a list of buttons: back, next, cancel. Optionally a bitmap at the
27 default, cancel, bitmap=true)"""
53 def cancel(self, title, next, name = "Cancel", active = 1): member in class:PyDialog
54 """Add a cancel button with a given title, the tab-next button,
468 fatal.cancel("Cancel", "Back", active = 0)
473 c=fatal.next("Finish", "Cancel", name="Finish")
480 user_exit.cancel("Cancel", "Back", active = 0
    [all...]
  /external/python/cpython3/Lib/tkinter/
dnd.py 95 At any time during a dnd sequence, the application can cancel the
96 sequence by calling the cancel() method on the object returned by
181 def cancel(self, event=None): member in class:DndHandler
simpledialog.py 34 text='', buttons=[], default=None, cancel=None,
48 self.cancel = cancel
104 if self.cancel is None:
107 self.done(self.cancel)
156 self.protocol("WM_DELETE_WINDOW", self.cancel)
198 w = Button(box, text="Cancel", width=10, command=self.cancel)
202 self.bind("<Escape>", self.cancel)
221 self.cancel()
223 def cancel(self, event=None): member in class:Dialog
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAccountManager.java 59 public boolean cancel(boolean mayInterruptIfRunning) { method
117 public boolean cancel(boolean mayInterruptIfRunning) { method
ShadowAlarmManager.java 80 public void cancel(PendingIntent pendingIntent) { method in class:ShadowAlarmManager
ShadowNotificationManager.java 35 public void cancel(int id) method in class:ShadowNotificationManager
37 cancel(null, id); method
41 public void cancel(String tag, int id) { method in class:ShadowNotificationManager
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
SslErrorHandlerTest.java 37 handler.cancel();
VibratorTest.java 52 vibrator.cancel();
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
RoboVibrator.java 73 @Override public void cancel() { method in class:RoboVibrator
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowAsyncTask.java 68 public boolean cancel(boolean mayInterruptIfRunning) { method in class:ShadowAsyncTask
69 return future.cancel(mayInterruptIfRunning);
ShadowFingerprintManager.java 72 CancellationSignal cancel,
80 if (cancel != null) {
81 if (cancel.isCanceled()) {
85 cancel.setOnCancelListener(() -> {
ShadowRenderNodeAnimator.java 57 public void cancel() { method in class:ShadowRenderNodeAnimator
58 directlyOn(realObject, RenderNodeAnimator.class).cancel();
ShadowSystemVibrator.java 113 protected void cancel() { method in class:ShadowSystemVibrator
  /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/
SimpleFuture.java 28 public boolean cancel(boolean mayInterruptIfRunning) { method in class:SimpleFuture
  /frameworks/av/services/camera/libcameraservice/api1/client2/
JpegCompressor.cpp 64 status_t JpegCompressor::cancel() { function in class:android::camera2::JpegCompressor
127 ALOGV("%s: Cancel called, exiting early", __FUNCTION__);
  /frameworks/base/core/java/android/content/
DialogInterface.java 53 void cancel(); method in interface:DialogInterface

Completed in 536 milliseconds

1 2 3 4 5 6 78 91011>>