HomeSort by relevance Sort by last modified time
    Searched refs:buttons (Results 26 - 50 of 192) sorted by null

12 3 4 5 6 7 8

  /external/chromium_org/ppapi/api/
ppb_gamepad.idl 34 * Number of valid elements in the |buttons| array.
39 * Normalized values for the buttons, indices valid up to |buttons_length|
42 float_t[32] buttons;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/data/rebaselineserver/
main.css 118 #nav-buttons {
122 #nav-buttons button {
128 #nav-buttons button:active {
133 #nav-buttons button[disabled] {
241 #action-buttons {
245 #action-buttons .link {
  /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/chromium_org/chrome/browser/chromeos/ui/
echo_dialog_view.cc 108 int buttons = ui::DIALOG_BUTTON_NONE; local
110 buttons |= ui::DIALOG_BUTTON_OK;
112 buttons |= ui::DIALOG_BUTTON_CANCEL;
113 return buttons;
  /external/chromium_org/content/browser/gamepad/
gamepad_provider_unittest.cc 74 test_data.items[0].buttons[0] = 1.f;
105 EXPECT_EQ(1.f, output.items[0].buttons[0]);
119 no_button_data.items[0].buttons[0] = 0.f;
124 button_down_data.items[0].buttons[0] = 1.f;
xbox_data_fetcher_mac.cc 127 normalized_data->buttons[0] = data.a;
128 normalized_data->buttons[1] = data.b;
129 normalized_data->buttons[2] = data.x;
130 normalized_data->buttons[3] = data.y;
131 normalized_data->buttons[4] = data.bumper_left;
132 normalized_data->buttons[5] = data.bumper_right;
133 normalized_data->buttons[6] = data.back;
134 normalized_data->buttons[7] = data.start;
135 normalized_data->buttons[8] = data.stick_left_click;
136 normalized_data->buttons[9] = data.stick_right_click
    [all...]
  /external/chromium_org/ui/message_center/
notification.cc 40 buttons(other.buttons) {}
112 if (index >= optional_fields_.buttons.size())
114 optional_fields_.buttons[index].icon = icon;
notification.h 48 std::vector<ButtonInfo> buttons; member in class:message_center::RichNotificationData
123 // Buttons, with icons fetched asynchronously.
124 const std::vector<ButtonInfo>& buttons() const { function in class:message_center::Notification
125 return optional_fields_.buttons;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
27 for num in range(len(buttons)):
28 s = buttons[num]
98 "the buttons below would have been glowing "
101 buttons=["Yes", "No", "Cancel"],
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-tk/
SimpleDialog.py 10 text='', buttons=[], default=None, cancel=None,
27 for num in range(len(buttons)):
28 s = buttons[num]
98 "the buttons below would have been glowing "
101 buttons=["Yes", "No", "Cancel"],
  /external/chromium_org/chrome/common/extensions/docs/examples/tutorials/analytics/
popup.js 45 var buttons = document.querySelectorAll('button');
46 for (var i = 0; i < buttons.length; i++) {
47 buttons[i].addEventListener('click', trackButtonClick);
  /external/qemu/distrib/sdl-1.2.15/src/video/qtopia/
SDL_sysevents.cc 56 uint32 buttons;
64 /* Check out the mouse buttons and position (slight race condition) */
77 view->GetMouse(&point, &buttons, true);
81 buttons = last_buttons;
134 if ( (buttons ^ last_buttons) & button_masks[i] ) {
135 if ( buttons & button_masks[i] ) {
142 last_buttons = buttons;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
IntentDrivenTestActivity.java 19 * text view containing instructions and one or more buttons that trigger intents.
32 public static final String EXTRA_BUTTONS = "buttons";
59 final ViewGroup buttons = (ViewGroup) findViewById(R.id.buttons); local
66 buttons.addView(button);
121 public TestInfo(String testId, int title, int infoText, ButtonInfo... buttons) {
125 mButtons = buttons;
  /external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
view.js 9 this.buttons = window.document.querySelectorAll('#calculator-buttons button');
11 Array.prototype.forEach.call(this.buttons, function(button) {
102 for (var i = 0; location && i < this.buttons.length && !found; ++i) {
103 if (this.isInButton_(this.buttons[i], location))
104 found = this.buttons[i];
  /external/chromium_org/content/browser/renderer_host/pepper/
pepper_gamepad_host_unittest.cc 124 EXPECT_EQ(AddressDiff(&web_gamepad.buttons, &web_gamepad),
125 AddressDiff(&ppapi_gamepad.buttons, &ppapi_gamepad));
167 button_down_data.items[0].buttons[0] = 1.f;
193 EXPECT_EQ(button_down_data.items[0].buttons[i],
194 buffer->buffer.items[0].buttons[i]);
  /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>(WebKit::WebGamepad::buttonsLengthCap))
135 m_gamepads.items[index].buttonsLength = buttons;
153 m_gamepads.items[index].buttons[button] = data;
  /external/chromium_org/ui/views/window/
dialog_delegate.cc 89 int buttons = GetDialogButtons(); local
90 if ((buttons & ui::DIALOG_BUTTON_CANCEL) ||
91 (buttons == ui::DIALOG_BUTTON_NONE)) {
  /external/chromium_org/ppapi/tests/
test_resource_array.cc 18 PP_InputEvent_MouseButton buttons) {
24 buttons,
test_input_event.h 34 PP_InputEvent_MouseButton buttons);
  /external/qemu/android/skin/
file.h 49 SkinButton* buttons; member in struct:SkinPart
55 SkinButton* __button = (part)->buttons; \
  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_joystick.c 141 joystick->buttons = (Uint8 *)SDL_malloc
147 || ((joystick->nbuttons > 0) && !joystick->buttons)) {
165 if ( joystick->buttons ) {
166 SDL_memset(joystick->buttons, 0,
256 * Get the number of buttons on a joystick
343 state = joystick->buttons[button];
345 SDL_SetError("Joystick only has %d buttons",joystick->nbuttons);
394 if ( joystick->buttons ) {
395 SDL_free(joystick->buttons);
550 joystick->buttons[button] = state
    [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);
  /external/chromium_org/ash/system/chromeos/screen_security/
screen_capture_tray_item.cc 55 data.buttons.push_back(message_center::ButtonInfo(
  /external/chromium_org/chrome/browser/resources/
feedback.css 92 #buttons-pane {
101 #buttons-pane > input {
  /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.

Completed in 1694 milliseconds

12 3 4 5 6 7 8