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

1 2 3

  /external/chromium_org/ui/gfx/animation/
test_animation_delegate.h 13 // Trivial AnimationDelegate implementation. AnimationEnded/Canceled quit the
35 bool canceled() const { function in class:gfx::TestAnimationDelegate
animation_unittest.cc 93 EXPECT_FALSE(ad.canceled());
103 EXPECT_TRUE(ad.canceled());
115 EXPECT_FALSE(ad.canceled());
slide_animation_unittest.cc 102 EXPECT_FALSE(delegate.canceled());
  /external/chromium_org/extensions/browser/guest_view/web_view/
web_view_find_helper.h 32 void DispatchFindUpdateEvent(bool canceled, bool final_update);
36 void EndFindSession(int session_request_id, bool canceled);
73 bool canceled);
140 void SendResponse(bool canceled);
157 bool canceled);
web_view_find_helper.cc 24 find_info_map_.begin()->second->SendResponse(true /* canceled */);
28 DispatchFindUpdateEvent(true /* canceled */, true /* final_update */);
32 void WebViewFindHelper::DispatchFindUpdateEvent(bool canceled,
37 args->SetBoolean(webview::kFindCanceled, canceled);
44 void WebViewFindHelper::EndFindSession(int session_request_id, bool canceled) {
51 find_info->SendResponse(canceled);
69 // Update the request's number of matches (if not canceled).
70 if (!canceled) {
77 (*i)->SendResponse(canceled);
143 // Ignore slow replies to canceled find requests
    [all...]
  /external/jmdns/src/javax/jmdns/impl/constants/
DNSState.java 53 CANCELED("canceled", StateClass.canceled),
64 probing, announcing, announced, canceling, canceled, closing, closed enum constant in enum:DNSState.StateClass
86 * or CANCELING_1, CANCELING_2, CANCELING_3, CANCELED Does not advance for ANNOUNCED and CANCELED state.
109 return CANCELED;
110 case CANCELED:
111 return CANCELED;
123 * Returns to the next reverted state. All states except CANCELED revert to PROBING_1. Status CANCELED does not revert
    [all...]
  /external/chromium_org/chrome/browser/ui/views/panels/
x11_panel_resizer.h 51 void StopResizing(ui::MouseEvent* event, bool canceled);
x11_panel_resizer.cc 97 void X11PanelResizer::StopResizing(ui::MouseEvent* event, bool canceled) {
102 panel_->manager()->EndResizingByMouse(canceled);
  /external/chromium_org/content/renderer/
external_popup_menu.h 35 // user canceled the popup.
40 // Called when the user has selected items or canceled the popup.
41 void DidSelectItems(bool canceled, const std::vector<int>& selected_indices);
external_popup_menu.cc 75 void ExternalPopupMenu::DidSelectItems(bool canceled,
79 if (canceled)
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_uninstall_dialog_view_browsertest.cc 34 bool canceled() { return canceled_; } function in class:__anon9885::TestExtensionUninstallDialogDelegate
75 EXPECT_TRUE(delegate.canceled());
  /external/chromium_org/ash/shelf/
shelf_button_host.h 42 // Invoked either if a pointer device is released or mouse capture canceled.
45 bool canceled) = 0;
  /external/chromium_org/chrome/browser/ui/views/
select_file_dialog_extension_browsertest.cc 46 bool canceled() const { return canceled_; } function in class:MockSelectFileDialogListener
260 ASSERT_TRUE(listener_->canceled());
292 ASSERT_FALSE(listener_->canceled());
320 ASSERT_FALSE(listener_->canceled());
346 ASSERT_TRUE(listener_->canceled());
369 ASSERT_TRUE(listener_->canceled());
  /external/chromium_org/chrome/renderer/
chrome_mock_render_thread.h 100 bool* canceled);
chrome_mock_render_thread.cc 166 bool* canceled) {
167 if (canceled)
168 *canceled = false;
  /external/chromium_org/cc/resources/
raster_worker_pool_unittest.cc 116 bool canceled; member in struct:cc::__anon7396::RasterWorkerPoolTest::RasterTaskResult
295 result.canceled = was_canceled;
327 EXPECT_FALSE(completed_tasks()[0].canceled);
328 EXPECT_FALSE(completed_tasks()[1].canceled);
344 EXPECT_FALSE(completed_tasks()[0].canceled);
  /external/chromium_org/net/cert/
multi_threaded_cert_verifier.cc 201 bool canceled() const { return callback_.is_null(); } function in class:net::CertVerifierRequest
311 bool canceled; local
314 canceled = canceled_;
315 if (!canceled) {
322 if (canceled)
419 if ((*i)->canceled()) {
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
MediaAccessPermissionRequestTest.java 30 public boolean canceled() { method in class:MediaAccessPermissionRequestTest.OnPermissionRequestHelper
138 // Don't respond and wait for the request canceled.
157 // Load the same page again, the previous request should be canceled.
160 assertTrue(helper.canceled());
  /external/chromium_org/ui/file_manager/file_manager/common/js/
progress_center_common.js 33 CANCELED: 'canceled'
146 * If the current state is canceled or completed, it always returns 0 or 100
153 case ProgressItemState.CANCELED: return 0;
160 * Whether the item can be canceled or not.
161 * @return {boolean} True if the item can be canceled.
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Job.java 47 volatile boolean canceled; field in class:Job
77 if (response != null && !canceled) {
93 * was canceled.
123 if (canceled) return null;
Dispatcher.java 44 /** Running jobs. Includes canceled jobs that haven't finished yet. */
117 * Cancel all jobs with the tag {@code tag}. If a canceled job is running it
126 if (Util.equal(tag, job.tag())) job.canceled = true;
  /external/chromium_org/content/child/
web_url_loader_impl_unittest.cc 92 bool canceled() { return canceled_; } function in class:content::__anon12146::TestBridge
378 EXPECT_FALSE(bridge()->canceled());
388 EXPECT_FALSE(bridge()->canceled());
397 EXPECT_FALSE(bridge()->canceled());
514 EXPECT_FALSE(bridge()->canceled());
581 EXPECT_FALSE(bridge()->canceled());
  /development/samples/HoneycombGallery/src/com/example/android/hcgallery/
MainActivity.java 212 boolean canceled;
216 canceled = true;
222 if (canceled)
  /external/chromium_org/printing/
printing_context_win.cc 382 bool canceled = false; local
388 &canceled);
390 if (canceled) {
  /external/chromium_org/ui/views/window/
dialog_delegate_unittest.cc 65 void CheckAndResetStates(bool canceled, bool accepted, Button* last_pressed) {
66 EXPECT_EQ(canceled, canceled_);

Completed in 519 milliseconds

1 2 3