/external/chromium/chrome/browser/extensions/ |
extension_webrequest_api.h | 68 bool cancel, 127 // stop blocking the request and either resume or cancel it. 128 void DecrementBlockCount(uint64 request_id, bool cancel, const GURL& new_url);
|
/external/chromium/chrome/browser/importer/ |
external_process_importer_client.h | 44 // Called by the ExternalProcessImporterHost on import cancel. 45 void Cancel(); 54 // Cancel import process on IO thread.
|
/external/chromium/chrome/browser/net/websocket_experiment/ |
websocket_experiment_runner.cc | 57 runner->Cancel(); 85 void WebSocketExperimentRunner::Cancel() { 181 task_->Cancel();
|
/external/chromium/chrome/browser/printing/ |
print_job.h | 76 void Cancel(); 137 // the notified calls Cancel() again. 151 // Print... dialog box has been closed with CANCEL button.
|
print_view_manager.h | 95 // |cancel| is true, cancel it instead of waiting for the job to finish. Will 97 void TerminatePrintJob(bool cancel);
|
/external/chromium/chrome/browser/remoting/ |
setup_flow.cc | 80 void SetupFlowErrorStepBase::Cancel() { } 106 void SetupFlowDoneStep::Cancel() { } 182 current_step_->Cancel();
|
setup_flow.h | 41 virtual void Cancel() = 0; 96 virtual void Cancel(); 122 virtual void Cancel();
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_folder_hover_state.mm | 57 // Cancel the pending open. 92 // Cancel pending hover close. Transition to kHoverStateOpen state. 112 // Cancel pending hover open. Transition to kHoverStateClosed state.
|
bookmark_name_folder_controller_unittest.mm | 37 [controller cancel:nil]; 40 // Change name then cancel. 42 [controller cancel:nil];
|
/external/chromium/chrome/browser/ui/cocoa/ |
js_modal_dialog_cocoa.mm | 73 case NSAlertSecondButtonReturn: { // Cancel 102 // is the OK button. "Other" is the cancel button. We don't use the 165 // OK button. The second button, if it exists, is always the Cancel button.
|
/external/chromium/chrome/browser/ui/ |
input_window_dialog_win.cc | 57 // It registers accelerators that accept/cancel the input. 72 virtual bool Cancel(); 129 bool ContentView::Cancel() {
|
/external/chromium/chrome/browser/ui/login/ |
login_prompt_gtk.cc | 100 GtkWidget* cancel = gtk_button_new_from_stock(GTK_STOCK_CANCEL); local 101 g_signal_connect(cancel, "clicked", G_CALLBACK(OnCancelClickedThunk), this); 102 gtk_box_pack_end(GTK_BOX(hbox), cancel, FALSE, FALSE, 0); local
|
/external/chromium/chrome/common/extensions/docs/examples/api/bookmarks/basic/ |
popup.html | 77 Cancel: function() { 94 'Cancel': function() { 112 'Cancel': function() {
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Pipeline.java | 78 public boolean cancel() { method in class:Pipeline.MyTimer 79 boolean retval = super.cancel(); 119 this.myTimerTask.cancel();
|
/external/proguard/src/proguard/gui/ |
OptimizationsDialog.java | 39 * Return value if the dialog is canceled (with the Cancel button or by 166 // Create the Cancel button. 167 JButton cancelButton = new JButton(msg("cancel"));
|
/external/protobuf/java/src/main/java/com/google/protobuf/ |
RpcController.java | 79 * canceled. The RPC system may cancel it immediately, may wait awhile and 80 * then cancel it, or may not even cancel the call at all. If the call is
|
/external/qemu/distrib/sdl-1.2.12/src/main/macos/ |
SDL.r | 18 $"4361 6E63 656C 0000 0000 000F 0084 001F 0155 1000 0000 0000 0054 0019 0066 007D" /* Cancel.......?...U.......T...f.} */ 28 $"0002 0000 0000 006F 001E 0083 0058 0406 4361 6E63 656C 0000 0000 006E 00C0 0082" /* .......o...?.X..Cancel.....n.?.? */ 35 $"4361 6E63 656C 2E00" /* Cancel.. */
|
/frameworks/base/core/java/android/webkit/ |
HttpAuthHandlerImpl.java | 103 * call back to either proceed() or cancel(). 152 * Cancel the authorization request 157 public void cancel() { method in class:HttpAuthHandlerImpl
|
/libcore/luni/src/main/java/java/util/concurrent/ |
ScheduledExecutorService.java | 16 * and return a task object that can be used to cancel or check 59 * public void run() { beeperHandle.cancel(true); } 93 * @return a ScheduledFuture that can be used to extract result or cancel
|
/packages/apps/Email/src/com/android/email/activity/ |
ShortcutPicker.java | 58 // Set handler for the "cancel" button 60 findViewById(R.id.cancel).setOnClickListener(this); 73 case R.id.cancel:
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
dlm.h | 52 * Used to cancel a pending lock request or conversion. A converting lock is 90 * Do not cancel the lock if it gets into conversion deadlock. 193 * -DLM_ECANCEL if a cancel completed successfully
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/ |
LintRunner.java | 115 // Cancel any current running jobs first 119 job.cancel(); 146 mLint.cancel();
|
/external/chromium/chrome/browser/download/ |
save_package.cc | 206 // method Cancel to be be called in destructor in test mode. 231 Cancel(true); 272 // Cancel all in progress request, might be called by user or internal error. 273 void SavePackage::Cancel(bool user_action) { 519 // If not found, we must have cancel action. 545 // We can not generate file name for this SaveItem, so we cancel the 552 Cancel(true); 640 // If we got disk error, cancel whole save page job. 642 // Cancel job with reason of disk error. 643 Cancel(false) [all...] |
/external/chromium/chrome/browser/ui/views/importer/ |
import_progress_dialog_view.cc | 90 // doesn't have a reference to us and cancel the import. We can get here 94 importer_host_->Cancel(); 132 bool ImportProgressDialogView::Cancel() { 141 // Cancel the import and wait for further instructions. 142 importer_host_->Cancel();
|
/frameworks/base/core/java/android/content/ |
AsyncTaskLoader.java | 134 * Attempt to cancel the current load task. See {@link AsyncTask#cancel(boolean)} 172 boolean cancelled = mTask.cancel(false); 226 if (DEBUG) Slog.v(TAG, "Load complete of old task, trying to cancel"); 230 // This cursor has been abandoned; just cancel the new data.
|