HomeSort by relevance Sort by last modified time
    Searched defs:button (Results 51 - 75 of 132) sorted by null

1 23 4 5 6

  /external/webkit/WebKit/gtk/webkit/
webkitwebnavigationaction.cpp 40 * clicked a link to start that navigation, and what mouse button was used.
46 gint button; member in struct:_WebKitWebNavigationActionPrivate
105 priv->button = g_value_get_int(value);
178 * WebKitWebNavigationAction:button:
180 * The DOM identifier for the mouse button used to click. DOM button values
187 g_param_spec_int("button",
188 _("Button"),
189 _("The button used to click"),
313 * Returns the DOM identifier for the mouse button used to click
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListItemFactory.java 24 import android.widget.Button;
34 * Create a view with a button at the top and bottom, with filler in between.
56 final Button topButton = new Button(context);
69 final Button bottomButton = new Button(context);
119 final Button button = new Button(context); local
120 button.setText("left")
127 final Button button = new Button(context); local
135 final Button button = new Button(context); local
155 public static View button(int position, Context context, String text, int desiredHeight) { method in class:ListItemFactory
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfButtonsTest.java 25 import android.widget.Button;
37 private Button mButtonAtTop;
51 mButtonAtTop = (Button) a.findViewById(R.id.button);
92 assertFalse("button at top should have focus back",
110 Button button = (Button) mListView.getSelectedView(); local
111 assertNotNull(indexInfo, button);
112 assertEquals(indexInfo, label, button.getText().toString())
127 Button button = (Button) mListView.getSelectedView(); local
    [all...]
  /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...]
  /packages/apps/Phone/src/com/android/phone/
DTMFTwelveKeyDialer.java 228 * Overriden so that with each valid button press, we start sending
258 * Overriden so that with each valid button up, we stop sending
598 View button; local
601 button = dialerView.findViewById(viewId);
603 button.setOnTouchListener(this);
604 button.setClickable(true);
605 button.setOnKeyListener(this);
639 // if the button is recognized
643 // Append the character mapped to this button, to the display.
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
RadioGroupTest.java 140 // (PassThroughHierarchyChangeListener's behaviour when button is added)
153 // inject the tracker to the button when the button is added by
162 // the tracker informs the checked state change of the button to the group
166 // the tracker informs the checked state change of the button to the group
170 // remove the tracker from the button when the button is removed
226 // uncheck the original button
236 // why the method is called while none of the button is checked or unchecked?
246 // why the method is called while none of the button is checked or unchecked
434 RadioButton button = new RadioButton(mContext); local
    [all...]
  /packages/experimental/RpcPerformance/src/com/android/rpc_performance/
ProviderPerfActivity.java 57 import android.widget.Button;
243 final Button button = (Button) findViewById(button_id); local
244 button.setOnClickListener(new View.OnClickListener() {
246 button.requestFocus();
247 button.setEnabled(false);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdStartDialog.java 35 import org.eclipse.swt.widgets.Button;
77 private Button mScaleButton;
133 mScaleButton = new Button(parent, SWT.CHECK);
195 Button button = new Button(scaleGroup, SWT.PUSH | SWT.FLAT); local
196 button.setText("?");
197 button.setToolTipText("Click to figure out your monitor's pixel density");
198 button.addSelectionListener(new SelectionAdapter() {
233 final Button wipeButton = new Button(parent, SWT.CHECK)
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/app/
RemoteService.java 37 import android.widget.Button;
216 // Watch for button clicks.
217 Button button = (Button)findViewById(R.id.start); local
218 button.setOnClickListener(mStartListener);
219 button = (Button)findViewById(R.id.stop);
220 button.setOnClickListener(mStopListener);
263 Button mKillButton
279 Button button = (Button)findViewById(R.id.bind); local
    [all...]
ServiceStartArguments.java 35 import android.widget.Button;
136 // For the start fail button, we will simulate the process dying
216 // Watch for button clicks.
217 Button button = (Button)findViewById(R.id.start1); local
218 button.setOnClickListener(mStart1Listener);
219 button = (Button)findViewById(R.id.start2);
220 button.setOnClickListener(mStart2Listener)
    [all...]
  /external/bluetooth/bluez/compat/
fakehid.c 195 static void button(int fd, unsigned int button, int is_press) function
197 switch (button) {
234 button(fd, 1, 1); break;
236 button(fd, 1, 0); break;
240 button(fd, 3, 1); break;
242 button(fd, 3, 0); break;
  /external/qemu/android/skin/
file.c 111 /** SKIN BUTTON
204 skin_button_free( SkinButton* button )
206 if (button) {
207 skin_image_unref( &button->image );
208 AFREE(button);
215 SkinButton* button; local
216 ANEW0(button);
217 if (button) {
222 button->name = node->name;
223 button->rect.pos.x = x
318 SkinButton* button = skin_button_create_from(node, basepath); local
369 SkinButton* button = skin_button_create_from(node, basepath); local
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/qtopia/
SDL_QWin.cc 94 Qt::ButtonState button = e->button(); local
96 if( (button & Qt::LeftButton)) {
99 if( (button & Qt::RightButton)) {
102 if( (button & Qt::MidButton)) {
111 Qt::ButtonState button = e->button(); local
113 (button & Qt::LeftButton) ? 1 :
114 ((button & Qt::RightButton) ? 2 : 3),
120 Qt::ButtonState button = e->button() local
    [all...]
  /external/webkit/WebCore/platform/
PlatformMouseEvent.h 66 // These button numbers match the ones used in the DOM API, 0 through 2, except for NoButton which isn't specified.
85 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, MouseEventType eventType,
89 , m_button(button)
106 MouseButton button() const { return m_button; } function in class:WebCore::PlatformMouseEvent
127 PlatformMouseEvent(int x, int y, int globalX, int globalY, MouseButton button, MouseEventType eventType,
  /external/webkit/WebKit/chromium/public/
WebInputEvent.h 202 enum Button {
209 Button button; member in class:WebKit::WebMouseEvent
220 , button(ButtonNone)
  /external/webkit/WebKit/win/
DOMEventsClasses.cpp 454 HRESULT STDMETHODCALLTYPE DOMMouseEvent::button( function in class:DOMMouseEvent
480 /* [in] */ unsigned short /*button*/,
  /frameworks/base/tests/LowStorageTest/src/com/android/lowstoragetest/
LowStorageTest.java 32 import android.widget.Button;
57 Button button = (Button) findViewById(R.id.button_run); local
58 button.setOnClickListener(mStartListener);
  /packages/apps/Browser/src/com/android/browser/
FindDialog.java 85 View button = findViewById(R.id.next); local
86 button.setOnClickListener(mFindListener);
87 mNextButton = button;
89 button = findViewById(R.id.previous);
90 button.setOnClickListener(mFindPreviousListener);
91 mPrevButton = button;
  /packages/apps/Calendar/src/com/android/calendar/
SelectCalendarsAdapter.java 54 // The drawables used for the button to change the visible and sync states on a calendar
171 * Method for changing the sync/vis state when a calendar's button is pressed.
347 MultiStateButton button = (MultiStateButton) view.findViewById(R.id.multiStateButton); local
349 //Set up the listeners so a click on the button will change the state.
351 button.setTag(view);
353 button.setOnClickListener(this);
354 button.setButtonResources(SYNC_VIS_BUTTON_RES);
355 button.setState(state);
  /external/qemu/distrib/sdl-1.2.12/src/video/Xext/extensions/
xf86dga.h 109 unsigned int button; member in struct:__anon5980
  /external/qemu/distrib/sdl-1.2.12/src/video/windx5/
SDL_dx5events.c 293 Uint8 button; local
319 /* Check for mouse button changes */
322 { /* Get the new DirectInput button state for the mouse */
343 button = (Uint8)(i+1);
344 /* Button #2 on two button mice is button 3
345 (the middle button is button 2)
347 if ( button == 2 )
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/EN/
TutorialEN.java 217 Bubble button; local
221 button = new Bubble(context, inputView,
224 mBubbles.add(button);
231 button = new Bubble(context, inputView,
234 mBubbles.add(button);
236 button = new Bubble(context, inputView,
239 mBubbles.add(button);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
TutorialJAJP.java 221 Bubble button; local
227 button = new Bubble(context, inputView,
230 mBubbles.add(button);
236 button = new Bubble(context, inputView,
239 mBubbles.add(button);
245 button = new Bubble(context, inputView,
248 mBubbles.add(button);
254 button = new Bubble(context, inputView,
257 mBubbles.add(button);
265 button = new Bubble(context, inputView,
    [all...]
  /external/qemu/distrib/sdl-1.2.12/include/
SDL_events.h 53 SDL_MOUSEBUTTONDOWN, /* Mouse button pressed */
54 SDL_MOUSEBUTTONUP, /* Mouse button released */
58 SDL_JOYBUTTONDOWN, /* Joystick button pressed */
59 SDL_JOYBUTTONUP, /* Joystick button released */
130 Uint8 state; /* The current button state */
136 /* Mouse button event structure */
140 Uint8 button; /* The mouse button index */ member in struct:SDL_MouseButtonEvent
175 /* Joystick button event structure */
179 Uint8 button; /* The joystick button index * member in struct:SDL_JoyButtonEvent
225 SDL_MouseButtonEvent button; member in union:SDL_Event
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/mint/
SDL_sysjoystick.c 398 /* Button */
459 int button; local
461 button=1<<jp_buttons[i];
463 if ((curstate & button) && !(prevstate & button)) {
466 if (!(curstate & button) && (prevstate & button)) {
505 /* Button */
531 int button; local
533 button=1<<(30+i)
565 int button; local
    [all...]

Completed in 668 milliseconds

1 23 4 5 6