OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebGamepadButton
(Results
1 - 8
of
8
) sorted by null
/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/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);
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);
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/Source/modules/gamepad/
Gamepad.h
47
void setButtons(unsigned count, const blink::
WebGamepadButton
* data);
WebKitGamepad.cpp
19
void WebKitGamepad::setButtons(unsigned count, const blink::
WebGamepadButton
* data)
WebKitGamepad.h
27
void setButtons(unsigned count, const blink::
WebGamepadButton
* data);
Gamepad.cpp
40
void Gamepad::setButtons(unsigned count, const blink::
WebGamepadButton
* data)
Completed in 389 milliseconds