/external/chromium_org/third_party/WebKit/Source/modules/gamepad/ |
Gamepad.cpp | 45 void Gamepad::buttons(unsigned count, float* data) function in class:WebCore::Gamepad
|
Gamepad.h | 58 const FloatVector& buttons() const { return m_buttons; } function in class:WebCore::Gamepad 59 void buttons(unsigned count, float* data);
|
/external/chromium_org/chrome/browser/ui/cocoa/constrained_window/ |
constrained_window_alert.h | 13 // (close button on top right, WebUI style buttons, etc...). The alert can be 30 @property(nonatomic, readonly) NSArray* buttons; variable 37 // Adds a button with the given |title|. Newly added buttons are positioned in 45 // positioned above the buttons. If |text| is empty, no link is displayed.
|
/external/chromium_org/content/shell/browser/ |
shell_javascript_dialog_gtk.cc | 45 GtkButtonsType buttons = GTK_BUTTONS_NONE; local 50 buttons = GTK_BUTTONS_NONE; 55 buttons = GTK_BUTTONS_CANCEL; 60 buttons = GTK_BUTTONS_CANCEL; 71 buttons,
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebGamepad.h | 71 // Number of valid entries in the buttons array. 74 // Normalized values representing buttons, in the range [0..1]. 75 float buttons[buttonsLengthCap]; member in class:blink::WebGamepad
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/ |
SDL_sysjoystick.h | 45 int nbuttons; /* Number of buttons on the joystick */ 46 Uint8 *buttons; /* Current button states */ member in struct:_SDL_Joystick
|
/external/chromium_org/ppapi/c/ |
ppb_gamepad.h | 44 * Number of valid elements in the |buttons| array. 48 * Normalized values for the buttons, indices valid up to |buttons_length| 51 float buttons[32]; member in struct:PP_GamepadSampleData
|
/external/chromium_org/ppapi/shared_impl/ |
ppb_gamepad_shared.h | 43 // Number of valid entries in the buttons array. 46 // Normalized values representing buttons, in the range [0..1]. 47 float buttons[kButtonsLengthCap]; member in struct:ppapi::WebKitGamepad
|
/external/chromium_org/third_party/WebKit/Source/testing/runner/ |
GamepadController.cpp | 132 int buttons = args[1].toInt32(); local 133 if (buttons < 0 || buttons >= static_cast<int>(blink::WebGamepad::buttonsLengthCap)) 135 m_gamepads.items[index].buttonsLength = buttons; 153 m_gamepads.items[index].buttons[button] = data;
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/riscos/ |
SDL_sysjoystick.c | 30 and that there is one joystick with four buttons. 97 /* Don't know how to get exact count of buttons so assume max of 4 for now */ 141 int buttons = (regs.r[0] & 0xFF0000) >> 16; local 146 if ((buttons & (1<<i)) != (oldbuttons & (1<<i))) 148 if (buttons & (1<<i)) SDL_PrivateJoystickButton(joystick,i,SDL_PRESSED);
|
/external/chromium/chrome/browser/ui/gtk/ |
js_modal_dialog_gtk.cc | 53 GtkButtonsType buttons = GTK_BUTTONS_NONE; local 60 buttons = GTK_BUTTONS_NONE; 67 // buttons. We add the buttons using gtk_dialog_add_button below. 68 buttons = GTK_BUTTONS_NONE; 70 buttons = GTK_BUTTONS_CANCEL; 76 buttons = GTK_BUTTONS_CANCEL; 89 GTK_DIALOG_MODAL, message_type, buttons, "%s", 117 // Adjust buttons/action area as needed.
|
/external/chromium_org/chrome/browser/ui/gtk/ |
javascript_app_modal_dialog_gtk.cc | 54 GtkButtonsType buttons = GTK_BUTTONS_NONE; local 61 buttons = GTK_BUTTONS_NONE; 68 // buttons. We add the buttons using gtk_dialog_add_button below. 69 buttons = GTK_BUTTONS_NONE; 71 buttons = GTK_BUTTONS_CANCEL; 77 buttons = GTK_BUTTONS_CANCEL; 90 GTK_DIALOG_MODAL, message_type, buttons, "%s", 122 // Adjust buttons/action area as needed.
|
/external/chromium_org/ui/message_center/views/ |
notifier_settings_view_unittest.cc | 102 const std::set<NotifierSettingsView::NotifierButton*> buttons = local 104 EXPECT_EQ(2u, buttons.size()); 107 buttons.begin(); 108 for (; iter != buttons.end(); ++iter) {
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/beos/ |
SDL_bejoystick.cc | 122 /* Get the number of buttons, hats, and axes on the joystick */ 165 uint32 buttons; local 176 buttons = stick->ButtonValues(); 195 if ( (buttons&0x01) != joystick->buttons[i] ) { 196 SDL_PrivateJoystickButton(joystick, i, (buttons&0x01)); 198 buttons >>= 1;
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/dc/ |
SDL_sysjoystick.c | 36 #define MAX_BUTTONS 8 /* and 8 buttons */ 128 int buttons,prev_buttons,i,changed; local 133 buttons = cond.buttons; 135 changed = buttons^prev_buttons; 139 if (buttons&CONT_DPAD_UP) hat|=SDL_HAT_UP; 140 if (buttons&CONT_DPAD_DOWN) hat|=SDL_HAT_DOWN; 141 if (buttons&CONT_DPAD_LEFT) hat|=SDL_HAT_LEFT; 142 if (buttons&CONT_DPAD_RIGHT) hat|=SDL_HAT_RIGHT; 147 if (buttons&CONT_DPAD2_UP) hat|=SDL_HAT_UP [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/ |
SDL_sysevents.cc | 251 int32 buttons; local 253 if (msg->FindInt32("buttons", &buttons) == B_OK) { 255 if (buttons & B_PRIMARY_MOUSE_BUTTON) { 258 if (buttons & B_SECONDARY_MOUSE_BUTTON) { 261 if (buttons & B_TERTIARY_MOUSE_BUTTON) { 266 last_buttons = buttons; 274 only state of buttons (after release, so it's always = 0), 282 int32 buttons; local 284 if (msg->FindInt32("buttons", &buttons) == B_OK) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/video/dc/ |
SDL_dcevents.c | 71 int buttons,changed; local 76 buttons = cond.buttons^0xff; 77 if (cond.dz<0) buttons|=MOUSE_WHEELUP; 78 if (cond.dz>0) buttons|=MOUSE_WHEELDOWN; 82 changed = buttons^prev_buttons; 85 SDL_PrivateMouseButton((buttons & sdl_mousebtn[i])?SDL_PRESSED:SDL_RELEASED,i,0,0); 88 prev_buttons = buttons;
|
/external/qemu/distrib/sdl-1.2.15/src/video/ggi/ |
SDL_ggievents.c | 62 static int buttons = 0; local
|
/external/qemu/distrib/sdl-1.2.15/src/video/vgl/ |
SDL_vglevents.c | 101 char buttons; local 109 buttons = mouseinfo.u.data.buttons; 119 state_changed = button_state ^ buttons; 122 if (buttons & (1<<i)) {
|
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/ |
HierarchicalMove.java | 32 Button[] buttons = new Button[6]; field in class:HierarchicalMove 45 buttons[0] = (Button) findViewById(R.id.button0); 46 buttons[1] = (Button) findViewById(R.id.button1); 47 buttons[2] = (Button) findViewById(R.id.button2); 48 buttons[3] = (Button) findViewById(R.id.button3); 49 buttons[4] = (Button) findViewById(R.id.button4); 50 buttons[5] = (Button) findViewById(R.id.button5); 52 // Move button0, then buttons 1/2 together, then buttons 3/4/5 sequentially: 67 move0.addTarget(buttons[0]) [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/properties/ |
LibraryProperties.java | 157 Composite buttons = new Composite(mTop, SWT.NONE); local 158 buttons.setLayout(new GridLayout()); 159 buttons.setLayoutData(new GridData(GridData.FILL_VERTICAL)); 163 mAddButton = new Button(buttons, SWT.PUSH | SWT.FLAT); 183 mRemoveButton = new Button(buttons, SWT.PUSH | SWT.FLAT); 199 Label l = new Label(buttons, SWT.SEPARATOR | SWT.HORIZONTAL); 202 mUpButton = new Button(buttons, SWT.PUSH | SWT.FLAT); 222 mDownButton = new Button(buttons, SWT.PUSH | SWT.FLAT);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.monitor/src/com/android/ide/eclipse/monitor/ddms/ |
StaticPortConfigDialog.java | 139 // center part with the list on the left and the buttons 163 // right part: buttons 164 Composite buttons = new Composite(main, SWT.NONE); local 165 buttons.setLayoutData(new GridData(GridData.FILL_VERTICAL)); 166 buttons.setLayout(new GridLayout(1, true)); 168 Button newButton = new Button(buttons, SWT.NONE); 187 final Button editButton = new Button(buttons, SWT.NONE); 211 final Button deleteButton = new Button(buttons, SWT.NONE);
|
/external/chromium_org/ash/wm/caption_buttons/ |
frame_caption_button_container_view.cc | 30 // The distance between buttons. 58 // Insert the buttons left to right. 166 // We should have at most two visible buttons. The button separator is 245 FrameCaptionButton* buttons[] = { local 249 for (size_t i = 0; i < arraysize(buttons); ++i) { 250 FrameCaptionButton* button = buttons[i]; 259 // Do not break in order to give preference to buttons which are 261 // TODO(pkotwicz): Make the caption buttons not overlap. 269 for (size_t i = 0; i < arraysize(buttons); ++i) { 270 buttons[i]->SetState(buttons[i] == pressed_button [all...] |
/external/chromium_org/chrome/browser/chromeos/ui/ |
echo_dialog_view.cc | 109 int buttons = ui::DIALOG_BUTTON_NONE; local 111 buttons |= ui::DIALOG_BUTTON_OK; 113 buttons |= ui::DIALOG_BUTTON_CANCEL; 114 return buttons;
|
/external/chromium_org/ui/views/window/ |
dialog_delegate.cc | 72 int buttons = GetDialogButtons(); local 73 if ((buttons & ui::DIALOG_BUTTON_CANCEL) || 74 (buttons == ui::DIALOG_BUTTON_NONE)) {
|