HomeSort by relevance Sort by last modified time
    Searched refs:button (Results 226 - 250 of 800) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/Support4Demos/src/com/example/android/supportv4/content/
LocalServiceBroadcaster.java 35 import android.widget.Button;
84 // Watch for button clicks.
85 Button button = (Button)findViewById(R.id.start); local
86 button.setOnClickListener(mStartListener);
87 button = (Button)findViewById(R.id.stop);
88 button.setOnClickListener(mStopListener);
  /external/chromium/chrome/browser/autofill/
autofill_cc_infobar_delegate.h 45 virtual string16 GetButtonLabel(InfoBarButton button) const;
  /external/chromium/chrome/browser/automation/
ui_controls.h 72 // Used to indicate the state of the button when generating events.
96 MouseButton button,
  /external/chromium/chrome/browser/extensions/
theme_installed_infobar_delegate.h 45 virtual string16 GetButtonLabel(InfoBarButton button) const;
  /external/chromium/chrome/browser/speech/
speech_input_bubble_controller_unittest.cc 91 SpeechInputBubble::Button button) {
92 VLOG(1) << "Received InfoBubbleButtonClicked for button " << button;
94 if (button == SpeechInputBubble::BUTTON_CANCEL) {
96 } else if (button == SpeechInputBubble::BUTTON_TRY_AGAIN) {
202 // try-again button click event comes back in the IO thread.
  /external/chromium/chrome/browser/ui/cocoa/infobars/
mock_confirm_infobar_delegate.h 37 virtual string16 GetButtonLabel(InfoBarButton button) const OVERRIDE;
  /external/chromium/chrome/browser/ui/gtk/
back_forward_button_gtk.h 48 void ShowBackForwardMenu(int button, guint32 event_time);
58 // Whether this button is a forward button.
  /external/chromium/chrome/browser/ui/gtk/extensions/
extension_installed_bubble_gtk.h 77 static void OnButtonClick(GtkWidget* button,
  /external/chromium/chrome/browser/ui/views/
about_ipc_dialog.h 18 #include "views/controls/button/button.h"
62 virtual void ButtonPressed(views::Button* button, const views::Event& event);
uninstall_view.h 34 MessageBoxFlags::DialogButton button) const;
37 virtual void ButtonPressed(views::Button* sender, const views::Event& event);
user_data_dir_dialog.h 39 MessageBoxFlags::DialogButton button) const;
  /external/chromium/chrome/browser/ui/views/download/
download_in_progress_dialog_view.h 39 MessageBoxFlags::DialogButton button) const OVERRIDE;
  /external/chromium/chrome/browser/ui/views/importer/
import_lock_dialog_view.h 38 MessageBoxFlags::DialogButton button) const OVERRIDE;
  /external/chromium/chrome/browser/ui/views/infobars/
translate_infobar_base.h 34 // Sets the text of the provided language menu button to reflect the current
36 void UpdateLanguageButtonText(views::MenuButton* button,
  /external/qemu/distrib/sdl-1.2.15/src/events/
SDL_events_c.h 60 extern int SDL_PrivateMouseButton(Uint8 state, Uint8 button,Sint16 x,Sint16 y);
  /external/webkit/Source/WebCore/platform/
PlatformMouseEvent.h 72 // These button numbers match the ones used in the DOM API, 0 through 2, except for NoButton which isn't specified.
96 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, MouseEventType eventType,
100 , m_button(button)
122 MouseButton button() const { return m_button; } function in class:WebCore::PlatformMouseEvent
151 PlatformMouseEvent(int x, int y, int globalX, int globalY, MouseButton button, MouseEventType eventType,
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithFooterViewAndNewLabelsTest.java 23 import android.widget.Button;
30 private Button mButton;
48 mButton = (Button) a.findViewById(R.id.button);
  /frameworks/base/core/tests/coretests/src/android/widget/layout/linear/
LLEditTextThenButton.java 23 import android.widget.Button;
29 private Button mButton;
41 mButton = (Button) findViewById(R.id.button);
52 public Button getButton() {
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListInterleaveFocusables.java 45 return ListItemFactory.button(
  /frameworks/base/core/tests/coretests/src/android/widget/scroll/
ScrollViewButtonsAndLabelsTest.java 24 import android.widget.Button;
68 Button firstButtonOffScreen = getActivity().getButton(offScreenIndex);
76 assertTrue("the button we've moved to off screen must not be the last "
77 + "button in the scroll view for this test to work (since we "
81 // now we are at the first button off screen
88 assertEquals("bottom of button should be verticalFadingEdgeLength "
99 Button lastButton = getActivity().getButton(numGroups - 1);
101 assertEquals("button needs to be at the very bottom of the layout for "
105 // move down to last button
110 assertTrue("last button should have focus", lastButton.hasFocus())
185 Button button = getActivity().getButton(i); local
203 Button button = getActivity().getButton(i); local
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
TextureViewActivity.java 30 import android.widget.Button;
75 Button button = new Button(this); local
76 button.setText("Remove/Add");
77 button.setOnClickListener(new View.OnClickListener() {
94 mContent.addView(button, new FrameLayout.LayoutParams(
  /frameworks/opt/photoviewer/sample/src/com/example/photoviewersample/
MainActivity.java 17 View b = findViewById(R.id.button);
  /external/qemu/android/
qemulator.c 545 if (ev.button.button == 4)
555 else if (ev.button.button == 5)
565 else if (ev.button.button == SDL_BUTTON_LEFT) {
570 fprintf(stderr, "... mouse button %s: button=%d state=%04x x=%d y=%d\n",
572 ev.button.button, ev.button.state, ev.button.x, ev.button.y)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
FragmentAlertDialog.java 30 import android.widget.Button;
46 // Watch for button clicks.
47 Button button = (Button)findViewById(R.id.show); local
48 button.setOnClickListener(new OnClickListener() {
FragmentDialogOrActivity.java 30 import android.widget.Button;
49 // Watch for button clicks.
50 Button button = (Button)findViewById(R.id.show_dialog); local
51 button.setOnClickListener(new OnClickListener() {

Completed in 947 milliseconds

1 2 3 4 5 6 7 8 91011>>