Searched refs:button (Results 126 - 150 of 820) sorted by relevance

1234567891011>>

/external/chromium_org/ui/views/controls/menu/
H A Dmenu_runner_handler.h22 MenuButton* button,
H A Dmenu_runner.cc26 MenuButton* button,
32 parent, button, bounds, anchor, source_type, run_types_);
59 return impl_->RunMenuAt(parent, button, bounds, anchor, run_types_);
25 RunMenuAt(Widget* parent, MenuButton* button, const gfx::Rect& bounds, MenuAnchorPosition anchor, ui::MenuSourceType source_type) argument
/external/chromium_org/ui/views/controls/scrollbar/
H A Dnative_scroll_bar_wrapper.h36 static NativeScrollBarWrapper* CreateWrapper(NativeScrollBar* button);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTestFragment.java55 Button button = new Button(context);
56 button.setId(R.id.button);
58 view.addView(button);
/external/chromium_org/athena/wm/
H A Doverview_toolbar.h55 bool IsEventOverButton(ActionButton* button,
57 gfx::Transform ComputeTransformFor(ActionButton* button) const;
58 void TransformButton(ActionButton* button);
/external/chromium_org/chrome/browser/resources/ntp4/
H A Dnew_tab_theme.css28 .link-button,
33 .link-button:active {
83 .bare-minimum .footer-menu-button:hover,
84 .bare-minimum .footer-menu-button[menu-shown],
89 .bare-minimum .footer-menu-button:hover .disclosure-triangle,
90 .bare-minimum .footer-menu-button[menu-shown] .disclosure-triangle {
H A Dsuggestions_page.css21 .suggestions .close-button {
30 html[dir=rtl] .suggestions .close-button {
35 .suggestions:hover .close-button {
40 .suggestions .close-button:hover {
100 * close button. */
101 .suggestions:active .close-button:not(:active) + .thumbnail {
106 * close button. */
107 .suggestions:active .close-button:not(:active) + .thumbnail .thumbnail-shield {
/external/chromium_org/chrome/browser/resources/options/
H A Dsettings_banner.css20 .settings-banner > .close-button {
32 html[dir='rtl'] .settings-banner > .close-button {
37 .settings-banner > .close-button:hover {
41 .settings-banner > .close-button:active {
69 .settings-banner .content-area .button-area {
77 .settings-banner button {
/external/chromium_org/chrome/browser/ui/views/profiles/
H A Dprofile_chooser_view_browsertest.cc31 #include "ui/views/controls/button/label_button.h"
65 NewAvatarButton* button = browser_view->frame()->GetNewAvatarMenuButton(); local
66 ASSERT_TRUE(button);
71 button->NotifyClick(mouse_ev);
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dview.js9 this.buttons = window.document.querySelectorAll('#calculator-buttons button');
11 Array.prototype.forEach.call(this.buttons, function(button) {
12 button.addEventListener('click', this.handleClick_.bind(this));
13 button.addEventListener('mousedown', this.handleMouse_.bind(this));
14 button.addEventListener('touchstart', this.handleTouch_.bind(this));
15 button.addEventListener('touchmove', this.handleTouch_.bind(this));
16 button.addEventListener('touchend', this.handleTouchEnd_.bind(this));
17 button.addEventListener('touchcancel', this.handleTouchEnd_.bind(this));
66 this.onButton.call(this, event.target.dataset.button)
94 this.onButton.call(this, this.touched.dataset.button);
[all...]
/external/chromium_org/chrome/test/android/javatests/src/org/chromium/chrome/test/util/
H A DInfoBarUtil.java19 * Finds, and optionally clicks, the button with the specified ID in the given InfoBar.
24 View button = infoBar.getContentWrapper().findViewById(buttonId);
25 if (button == null) return false;
26 if (click) new TouchCommon(test).singleClickView(button);
31 * Checks if the primary button exists on the InfoBar.
40 * Checks if the secondary button exists on the InfoBar.
49 * Simulates clicking the Close button in the specified infobar.
58 * Simulates clicking the primary button in the specified infobar.
67 * Simulates clicking the secondary button in the specified infobar.
/external/chromium_org/third_party/WebKit/Source/web/resources/
H A DcalendarPicker.css165 .month-popup-button,
166 .month-popup-button:hover,
167 .month-popup-button:disabled {
174 .month-popup-button:disabled {
178 .month-popup-button {
187 .month-popup-button .disclosure-triangle {
191 .month-popup-button .disclosure-triangle svg {
195 .today-button::after {
205 .calendar-navigation-button {
244 .month-button {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DmediaControls.css68 /* We use flex-start here to ensure that the play button is visible even
105 audio::-webkit-media-controls-mute-button, video::-webkit-media-controls-mute-button {
106 -webkit-appearance: media-mute-button;
138 video::-webkit-media-controls-overlay-play-button {
139 -webkit-appearance: media-overlay-play-button;
154 video::-internal-media-controls-overlay-cast-button {
155 -webkit-appearance: -internal-media-overlay-cast-off-button;
170 audio::-webkit-media-controls-play-button, video::-webkit-media-controls-play-button {
[all...]
/external/chromium_org/ui/views/window/
H A Dcustom_frame_view.cc22 #include "ui/views/controls/button/image_button.h"
43 // The titlebar never shrinks too short to show the caption button plus some
73 void LayoutButton(ImageButton* button, const gfx::Rect& bounds) { argument
74 button->SetVisible(true);
75 button->SetImageAlignment(ImageButton::ALIGN_LEFT,
77 button->SetBoundsRect(bounds);
188 // The close button isn't affected by this constraint.
322 // button, we vertically center it. We want to bias rounding to put extra
488 // side of the caption buttons. In maximized mode we extend the edge button
506 ImageButton* button local
585 ImageButton* button = new ImageButton(this); local
598 ImageButton* button = NULL; local
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dconfirm_bubble_views.cc47 ui::DialogButton button) const {
48 switch (button) {
55 return DialogDelegateView::GetDialogButtonLabel(button);
59 bool ConfirmBubbleViews::IsDialogButtonEnabled(ui::DialogButton button) const {
60 switch (button) {
/external/chromium_org/content/browser/renderer_host/input/
H A Dweb_input_event_builders_android.cc55 WebMouseEvent::Button button,
74 result.button = button;
76 result.button = WebMouseEvent::ButtonNone;
93 result.button = WebMouseEvent::ButtonNone;
54 Build(blink::WebInputEvent::Type type, WebMouseEvent::Button button, double time_sec, int window_x, int window_y, int modifiers, int click_count) argument
/external/chromium_org/ui/app_list/views/
H A Dpage_switcher.cc15 #include "ui/views/controls/button/custom_button.h"
64 // Paints a button that has two rounded corner at bottom.
105 // [-1, 1] range that represents the portion of the button that should be
142 const views::View* button = buttons_->child_at(i); local
143 if (button->bounds().Contains(buttons_point))
155 PageSwitcherButton* button = local
157 button->SetState(views::CustomButton::STATE_HOVERED);
162 PageSwitcherButton* button = local
164 button->SetState(views::CustomButton::STATE_NORMAL);
213 PageSwitcherButton* button local
232 PageSwitcherButton* button = new PageSwitcherButton(this); local
[all...]
/external/chromium_org/ash/system/chromeos/multi_user/
H A Duser_switch_util.cc42 ui::DialogButton button) const OVERRIDE;
43 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE;
105 ui::DialogButton button) const {
107 button == ui::DIALOG_BUTTON_OK ?
113 ui::DialogButton button) const {
114 return button == ui::DIALOG_BUTTON_OK || button == ui::DIALOG_BUTTON_CANCEL;
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElements.cpp215 // When the media element is clicked or touched we want to make the overlay cast button visible
234 RefPtrWillBeRawPtr<MediaControlMuteButtonElement> button = adoptRefWillBeNoop(new MediaControlMuteButtonElement(mediaControls)); local
235 button->ensureUserAgentShadowRoot();
236 button->setType("button");
237 return button.release();
257 DEFINE_STATIC_LOCAL(AtomicString, id, ("-webkit-media-controls-mute-button", AtomicString::ConstructFromLiteral));
270 RefPtrWillBeRawPtr<MediaControlPlayButtonElement> button = adoptRefWillBeNoop(new MediaControlPlayButtonElement(mediaControls)); local
271 button->ensureUserAgentShadowRoot();
272 button
306 RefPtrWillBeRawPtr<MediaControlOverlayPlayButtonElement> button = adoptRefWillBeNoop(new MediaControlOverlayPlayButtonElement(mediaControls)); local
350 RefPtrWillBeRawPtr<MediaControlToggleClosedCaptionsButtonElement> button = adoptRefWillBeNoop(new MediaControlToggleClosedCaptionsButtonElement(mediaControls)); local
535 RefPtrWillBeRawPtr<MediaControlFullscreenButtonElement> button = adoptRefWillBeNoop(new MediaControlFullscreenButtonElement(mediaControls)); local
574 RefPtrWillBeRawPtr<MediaControlCastButtonElement> button = adoptRefWillBeNoop(new MediaControlCastButtonElement(mediaControls, isOverlayButton)); local
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Dheader_bar.js21 // Whether guest button should be shown when header bar is in normal mode.
34 $('shutdown-button').addEventListener('click',
36 $('add-user-button').addEventListener('click',
38 $('cancel-add-user-button').addEventListener('click',
42 $('guest-user-button').addEventListener('click',
44 $('sign-out-user-button').addEventListener('click',
46 $('cancel-multiple-sign-in-button').addEventListener('click',
48 $('cancel-consumer-management-enrollment-button').addEventListener(
56 login.AppsMenuButton.decorate($('show-apps-button'));
62 * Tab index value for all button element
[all...]
H A Doobe_screen_oauth_enrollment.css131 .oauth-enroll-button {
135 .oauth-enroll-state-signin.mode-manual #oauth-enroll-cancel-button,
136 .oauth-enroll-state-signin.mode-forced #oauth-enroll-back-button,
137 .oauth-enroll-state-signin.mode-recovery #oauth-enroll-back-button,
138 .oauth-enroll-state-working.mode-manual #oauth-enroll-cancel-button,
139 .oauth-enroll-state-working.mode-forced #oauth-enroll-back-button,
140 .oauth-enroll-state-working.mode-recovery #oauth-enroll-back-button,
141 .oauth-enroll-state-error.mode-manual #oauth-enroll-cancel-button,
142 .oauth-enroll-state-error.mode-auto #oauth-enroll-retry-button,
143 .oauth-enroll-state-error.mode-forced #oauth-enroll-back-button,
[all...]
/external/chromium_org/chrome/browser/resources/user_manager/
H A Duser_manager.css152 .action-box-button,
153 .action-box-button:hover,
154 .action-box-area.active .action-box-button {
167 .action-box-button:hover,
168 .action-box-area.active .action-box-button {
172 .action-box-remove-user-warning .remove-warning-button {
176 .action-box-remove-user-warning .remove-warning-button:focus {
178 button.custom-appearance:focus. */
H A Duser_manager_tutorial.css95 .slide-buttons .link-button {
99 .slide-buttons button {
106 .slide-buttons button.left {
111 html[dir=rtl] .slide-buttons button.left {
115 .slide-buttons button.right {
174 #slide-not-you #dismiss-bubble-button {
184 html[dir=rtl] #slide-not-you #dismiss-bubble-button {
/external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
H A Doverlay.css72 .overlay .page > .close-button {
83 html[dir='rtl'] .overlay .page > .close-button {
88 .overlay .page > .close-button:hover {
92 .overlay .page > .close-button:active {
135 .overlay .page .button-strip {
140 .overlay .page .button-strip > button {
/external/chromium-trace/trace-viewer/src/tracing/
H A Dtimeline_view.css53 .timeline-view > .control > .controls > button,
128 .button.find-previous {
133 .button.find-next {
142 .button {
153 .button:hover {
160 .view-info-button {
166 .view-info-button:hover {
170 .view-import-errors-button {
175 .view-import-errors-button:hover {

Completed in 810 milliseconds

1234567891011>>