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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
JsPromptResultReceiver.java 12 * confirm() or cancel() to allow processing to continue.
16 public void cancel(); method in interface:JsPromptResultReceiver
JsResultReceiver.java 12 * the dialog, it must either callback with confirm() or cancel() to allow
17 public void cancel(); method in interface:JsResultReceiver
  /external/chromium_org/third_party/WebKit/public/platform/
WebSpeechSynthesizer.h 47 virtual void cancel() = 0;
WebFileWriter.h 52 // 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.
53 // Do not call cancel when there is no write or truncate in progress.
54 virtual void cancel() = 0;
WebPrerenderingSupport.h 50 virtual void cancel(const WebPrerender&) = 0;
53 // is a weaker signal than cancel(), since the launcher hasn't indicated that the prerender isn't
WebURLLoader.h 64 virtual void cancel() = 0;
  /external/chromium_org/chrome/browser/ui/cocoa/infobars/
confirm_infobar_controller.h 11 // Called when the OK and Cancel buttons are clicked.
13 - (IBAction)cancel:(id)sender;
  /external/chromium_org/components/cronet/android/java/src/org/chromium/net/
UrlRequest.java 45 public void cancel(); method in interface:UrlRequest
CronetUrlRequest.java 27 public void cancel() { method in class:CronetUrlRequest
  /external/chromium_org/remoting/host/installer/mac/uninstaller/
remoting_uninstaller_app.h 11 - (IBAction)cancel:(id)sender;
  /external/chromium_org/content/shell/renderer/test_runner/
web_task.h 24 // An implementation of run() should return immediately if cancel() was
27 virtual void cancel() = 0;
63 virtual void cancel() { function in class:content::WebMethodTask
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesis.idl 35 void cancel();
  /external/chromium_org/media/blink/
active_loader.cc 18 loader_->cancel();
mock_weburlloader.h 24 MOCK_METHOD0(cancel, void());
  /external/chromium_org/mojo/public/java/system/src/org/chromium/mojo/system/
AsyncWaiter.java 25 void cancel(); method in interface:AsyncWaiter.Cancellable
47 * @return a {@link Cancellable} object that can be used to cancel waiting. The cancellable
  /external/chromium_org/mojo/python/tests/
async_wait_unittest.py 19 self.cancel = self.handles.handle0.AsyncWait(system.HANDLE_SIGNAL_READABLE,
24 self.cancel()
45 self.loop.PostDelayedTask(self.cancel, 0)
50 self.cancel()
  /external/chromium_org/third_party/WebKit/Source/core/loader/
PrerenderHandle.h 53 void cancel();
  /external/chromium_org/third_party/WebKit/public/web/
WebNotificationPresenter.h 56 // FIXME: Remove cancel() once Chromium updated to the new name, and make close() pure virtual.
58 virtual void cancel(const WebNotification&) = 0;
  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
DataFetcher.java 10 * whether or not the corresponding image is cached. Cancel also may or may not be called. If
51 * The best way to use this method is to cancel any loads that have not yet started, but allow those that are in
56 public void cancel(); method in interface:DataFetcher
  /external/chromium_org/chrome/browser/ui/webui/print_preview/
print_preview_ui_unittest.cc 201 bool cancel = false; local
203 preview_ui->GetCurrentPrintPreviewStatus(kInvalidId, 0, &cancel);
204 EXPECT_TRUE(cancel);
212 cancel = true;
214 &cancel);
215 EXPECT_FALSE(cancel);
217 cancel = false;
219 &cancel);
220 EXPECT_TRUE(cancel);
224 cancel = false
    [all...]
  /external/chromium_org/chrome/browser/prerender/
prerender_resource_throttle.cc 74 void PrerenderResourceThrottle::Cancel() {
75 controller()->Cancel();
85 bool cancel = false; local
93 cancel = true;
97 cancel = true;
111 base::Bind(cancel ? &PrerenderResourceThrottle::Cancel :
123 bool cancel = false; local
131 cancel = true;
137 // Cancel on deferred synchronous requests. Those wil
    [all...]
  /external/chromium_org/content/test/
mock_weburlloader.h 24 MOCK_METHOD0(cancel, void());
  /external/chromium_org/ui/app_list/views/
app_list_drag_and_drop_host.h 56 // when the mouse / touch events stop. If |cancel| is set, the drag operation
58 virtual void EndDrag(bool cancel) = 0;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BluetoothChatService.java 119 // Cancel any thread attempting to make a connection
120 if (mConnectThread != null) {mConnectThread.cancel(); mConnectThread = null;}
122 // Cancel any thread currently running a connection
123 if (mConnectedThread != null) {mConnectedThread.cancel(); mConnectedThread = null;}
146 // Cancel any thread attempting to make a connection
148 if (mConnectThread != null) {mConnectThread.cancel(); mConnectThread = null;}
151 // Cancel any thread currently running a connection
152 if (mConnectedThread != null) {mConnectedThread.cancel(); mConnectedThread = null;}
169 // Cancel the thread that completed the connection
170 if (mConnectThread != null) {mConnectThread.cancel(); mConnectThread = null;
342 public void cancel() { method in class:BluetoothChatService.AcceptThread
416 public void cancel() { method in class:BluetoothChatService.ConnectThread
491 public void cancel() { method in class:BluetoothChatService.ConnectedThread
    [all...]
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
BluetoothChatService.java 109 // Cancel any thread attempting to make a connection
111 mConnectThread.cancel();
115 // Cancel any thread currently running a connection
117 mConnectedThread.cancel();
143 // Cancel any thread attempting to make a connection
146 mConnectThread.cancel();
151 // Cancel any thread currently running a connection
153 mConnectedThread.cancel();
173 // Cancel the thread that completed the connection
175 mConnectThread.cancel();
359 public void cancel() { method in class:BluetoothChatService.AcceptThread
434 public void cancel() { method in class:BluetoothChatService.ConnectThread
511 public void cancel() { method in class:BluetoothChatService.ConnectedThread
    [all...]

Completed in 622 milliseconds

1 2 3 4 5 6 7 8 91011>>