HomeSort by relevance Sort by last modified time
    Searched refs:Button (Results 801 - 825 of 1156) sorted by null

<<31323334353637383940>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
ProjectCheckPage.java 41 import org.eclipse.swt.widgets.Button;
104 Button browseButton = new Button(projectComposite, SWT.PUSH);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/
ConfirmationPage.java 36 import org.eclipse.swt.widgets.Button;
63 private Button mForceOverride;
199 mForceOverride = new Button(workArea, SWT.CHECK);
245 * Enables/disables the finish button on the wizard and displays error messages as needed.
  /development/samples/ApiDemos/src/com/example/android/apis/view/
SearchViewActionBar.java 32 import android.widget.Button;
  /development/samples/Support4Demos/src/com/example/android/supportv4/widget/
SwipeRefreshLayoutActivity.java 30 import android.widget.Button;
  /development/samples/UiAutomator/src/com/android/test/uiautomator/demos/
SetTwoMinuteAlarm.java 108 new UiSelector().className(android.widget.Button.class.getName()).instance(1));
  /external/chromium_org/ash/system/chromeos/network/
network_state_list_detailed_view.h 19 #include "ui/views/controls/button/button.h"
68 virtual void ButtonPressed(views::Button* sender,
87 void UpdateTechnologyButton(TrayPopupHeaderButton* button,
  /external/chromium_org/ash/system/chromeos/screen_security/
screen_tray_item.h 15 #include "ui/views/controls/button/button.h"
53 virtual void ButtonPressed(views::Button* sender,
96 // can stop the screen capture/sharing by pressing the stop button.
  /external/chromium_org/ash/system/date/
date_default_view.cc 19 #include "ui/views/controls/button/button.h"
102 void DateDefaultView::ButtonPressed(views::Button* sender,
  /external/chromium_org/ash/system/user/
user_view.cc 85 // If |placeholder| is true, button is used as placeholder. That means that
86 // button is inactive and is not painted, but consume the same ammount of
100 // Just skip paint if this button used as a placeholder.
222 // The logout button must be added before the user card so that the user card
224 // Note that only the current multiprofile user gets a button.
274 // Give the logout button the space it requests.
294 // the size of the border to make it overlap with the logout button.
297 // To make the logout button symmetrical with the user card we also make
298 // the button longer by the same size the hover area in front of the icon
317 void UserView::ButtonPressed(views::Button* sender, const ui::Event& event)
462 ButtonFromView* button = add_user_disabled_ local
    [all...]
  /external/chromium_org/ash/system/web_notification/
web_notification_tray.h 18 #include "ui/views/controls/button/button.h"
100 virtual void ButtonPressed(views::Button* sender,
  /external/chromium_org/chrome/browser/chromeos/options/
network_config_view.h 13 #include "ui/views/controls/button/button.h" // views::ButtonListener
37 // Called when dialog "OK" button is pressed.
40 // Called when dialog "Cancel" button is pressed.
58 ui::DialogButton button) const OVERRIDE;
59 virtual bool IsDialogButtonEnabled(ui::DialogButton button) const OVERRIDE;
74 views::Button* sender, const ui::Event& event) OVERRIDE;
108 // Button in lower-left corner, may be null or hidden.
130 // Called to determine if "Connect" button should be enabled.
133 // Called when "Connect" button is clicked
    [all...]
  /external/chromium_org/chrome/browser/ui/views/extensions/
extension_message_bubble_view.h 14 #include "ui/views/controls/button/button.h"
174 virtual void ButtonPressed(views::Button* sender,
199 // All actions (link, button, esc) close the bubble, but we need to
  /external/chromium_org/chrome/browser/ui/views/
fullscreen_exit_bubble_views.cc 25 #include "ui/views/controls/button/label_button.h"
68 accept_button_->SetStyle(views::Button::STYLE_BUTTON);
73 deny_button_->SetStyle(views::Button::STYLE_BUTTON);
102 virtual void ButtonPressed(views::Button* sender,
203 views::Button* sender,
hung_renderer_view.h 12 #include "ui/views/controls/button/button.h"
127 ui::DialogButton button) const OVERRIDE;
133 virtual void ButtonPressed(views::Button* sender,
158 // The extra button inserted into the ClientView to kill the errant process.
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_frame_view.h 10 #include "ui/views/controls/button/button.h"
82 virtual void ButtonPressed(views::Button* sender, const ui::Event& event)
  /external/chromium_org/chrome/browser/ui/views/toolbar/
browser_action_test_util_views.cc 39 button()->extension());
47 return !GetContainer(browser_)->GetBrowserActionViewAt(index)->button()->
48 GetImage(views::Button::STATE_NORMAL).isNull();
53 button()->GetIconForTest();
62 BrowserActionButton* button = local
63 GetContainer(browser_)->GetBrowserActionViewAt(index)->button();
64 return button->extension()->id();
69 GetContainer(browser_)->GetBrowserActionViewAt(index)->button()->
  /external/chromium_org/chrome/browser/ui/views/website_settings/
website_settings_popup_view.h 17 #include "ui/views/controls/button/button.h"
74 virtual void ButtonPressed(views::Button* button,
  /external/chromium_org/chrome/common/extensions/docs/examples/api/nativeMessaging/host/
native-messaging-example-host 68 self.sendButton = Tkinter.Button(self, text="Send", command=self.onSend)
  /external/chromium_org/content/browser/renderer_host/input/
web_input_event_builders_android.cc 55 WebMouseEvent::Button button,
74 result.button = button;
76 result.button = WebMouseEvent::ButtonNone;
93 result.button = WebMouseEvent::ButtonNone;
  /external/chromium_org/ui/app_list/views/
search_result_actions_view.cc 13 #include "ui/views/controls/button/blue_button.h"
14 #include "ui/views/controls/button/image_button.h"
66 views::ImageButton* button = new views::ImageButton(this); local
67 button->SetBorder(views::Border::CreateEmptyBorder(0, 9, 0, 9));
68 button->SetAccessibleName(action.tooltip_text);
69 button->SetImageAlignment(views::ImageButton::ALIGN_CENTER,
71 button->SetImage(views::CustomButton::STATE_NORMAL, &action.base_image);
72 button->SetImage(views::CustomButton::STATE_HOVERED, &action.hover_image);
73 button->SetImage(views::CustomButton::STATE_PRESSED, &action.pressed_image);
74 button->SetTooltipText(action.tooltip_text)
80 views::BlueButton* button = new views::BlueButton(this, action.label_text); local
    [all...]
tile_item_view.cc 134 void TileItemView::ButtonPressed(views::Button* sender,
  /external/chromium_org/ui/message_center/views/
message_center_view.h 15 #include "ui/views/controls/button/button.h"
23 class Button;
message_view.h 13 #include "ui/views/controls/button/button.h"
44 // An base class for a notification entry. Contains background, close button
86 virtual void ButtonPressed(views::Button* sender,
notification_view.h 57 virtual void ButtonPressed(views::Button* sender,
  /external/chromium_org/ui/views/examples/
scroll_view_example.cc 10 #include "ui/views/controls/button/label_button.h"
11 #include "ui/views/controls/button/radio_button.h"
26 AddChildView(new LabelButton(NULL, ASCIIToUTF16("Button")));
27 AddChildView(new RadioButton(ASCIIToUTF16("Radio Button"), 0));
96 void ScrollViewExample::ButtonPressed(Button* sender, const ui::Event& event) {

Completed in 1561 milliseconds

<<31323334353637383940>>