HomeSort by relevance Sort by last modified time
    Searched refs:WebGamepadButton (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/content/browser/gamepad/
gamepad_standard_mappings.h 60 blink::WebGamepadButton AxisToButton(float input);
61 blink::WebGamepadButton AxisNegativeAsButton(float input);
62 blink::WebGamepadButton AxisPositiveAsButton(float input);
63 blink::WebGamepadButton ButtonFromButtonAndAxis(
64 blink::WebGamepadButton button, float axis);
65 blink::WebGamepadButton NullButton();
gamepad_standard_mappings.cc 9 blink::WebGamepadButton AxisToButton(float input) {
11 return blink::WebGamepadButton(
15 blink::WebGamepadButton AxisNegativeAsButton(float input) {
17 return blink::WebGamepadButton(
21 blink::WebGamepadButton AxisPositiveAsButton(float input) {
23 return blink::WebGamepadButton(
27 blink::WebGamepadButton ButtonFromButtonAndAxis(
28 blink::WebGamepadButton button, float axis) {
30 return blink::WebGamepadButton(button.pressed, value);
33 blink::WebGamepadButton NullButton()
    [all...]
gamepad_standard_mappings_win.cc 39 mapped->buttons[kButtonLeftTrigger] = blink::WebGamepadButton();
40 mapped->buttons[kButtonRightTrigger] = blink::WebGamepadButton();
41 mapped->buttons[kButtonLeftThumbstick] = blink::WebGamepadButton();
42 mapped->buttons[kButtonRightThumbstick] = blink::WebGamepadButton();
43 mapped->buttons[kButtonMeta] = blink::WebGamepadButton();
  /external/chromium_org/third_party/WebKit/public/platform/
WebGamepad.h 37 class WebGamepadButton {
39 WebGamepadButton()
44 WebGamepadButton(bool pressed, double value)
93 WebGamepadButton buttons[buttonsLengthCap];
  /external/chromium_org/third_party/WebKit/Source/modules/gamepad/
Gamepad.h 47 void setButtons(unsigned count, const WebGamepadButton* data);
WebKitGamepad.cpp 18 void WebKitGamepad::setButtons(unsigned count, const WebGamepadButton* data)
WebKitGamepad.h 27 void setButtons(unsigned count, const WebGamepadButton* data);
Gamepad.cpp 39 void Gamepad::setButtons(unsigned count, const WebGamepadButton* data)

Completed in 105 milliseconds