OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:WebGamepad
(Results
26 - 38
of
38
) sorted by null
1
2
/external/chromium_org/content/browser/gamepad/
gamepad_platform_data_fetcher_linux.cc
67
using blink::
WebGamepad
;
119
WebGamepad
& pad = data_.items[index];
189
base::TruncateUTF8ToByteSize(id,
WebGamepad
::idLengthCap - 1, &id);
196
base::TruncateUTF8ToByteSize(mapping,
WebGamepad
::mappingLengthCap - 1,
245
WebGamepad
& pad = data_.items[index];
252
if (item >=
WebGamepad
::axesLengthCap)
258
if (item >=
WebGamepad
::buttonsLengthCap)
gamepad_provider.cc
24
using blink::
WebGamepad
;
169
bool GamepadProvider::PadState::Match(const
WebGamepad
& pad) const {
177
void GamepadProvider::PadState::SetPad(const
WebGamepad
& pad) {
194
void GamepadProvider::PadState::AsWebGamepad(
WebGamepad
* pad) {
237
WebGamepad
& pad = hwbuf->buffer.items[i];
244
WebGamepad
old_pad;
275
bool connected, int index, const
WebGamepad
& pad) {
293
bool connected, int index, const
WebGamepad
& pad) {
gamepad_service.cc
90
const blink::
WebGamepad
& pad) {
102
const blink::
WebGamepad
& pad) {
135
const blink::
WebGamepad
& pad = gamepads.items[i];
raw_input_data_fetcher_win.h
45
wchar_t id[blink::
WebGamepad
::idLengthCap];
48
bool buttons[blink::
WebGamepad
::buttonsLengthCap];
51
RawGamepadAxis axes[blink::
WebGamepad
::axesLengthCap];
raw_input_data_fetcher_win.cc
247
swprintf(gamepad_info->id,
WebGamepad
::idLengthCap, L"Unknown Gamepad");
282
if (button_caps[i].Range.UsageMin <=
WebGamepad
::buttonsLengthCap) {
284
std::min(
WebGamepad
::buttonsLengthCap,
302
if (axis_index <
WebGamepad
::axesLengthCap) {
318
if (usage >=
WebGamepad
::axesLengthCap &&
321
for (; next_index <
WebGamepad
::axesLengthCap; ++next_index) {
325
if (next_index <
WebGamepad
::axesLengthCap) {
334
if (next_index >=
WebGamepad
::axesLengthCap)
378
button_index < blink::
WebGamepad
::buttonsLengthCap)
gamepad_standard_mappings.cc
33
void DpadFromAxis(blink::
WebGamepad
* mapped, float dir) {
/external/chromium_org/content/browser/renderer_host/pepper/
pepper_gamepad_host_unittest.cc
87
COMPILE_ASSERT(sizeof(ppapi::WebKitGamepad) == sizeof(blink::
WebGamepad
),
90
blink::
WebGamepad
web_gamepad;
95
size_t webkit_id_length_cap = blink::
WebGamepad
::idLengthCap;
99
size_t webkit_axes_length_cap = blink::
WebGamepad
::axesLengthCap;
103
size_t webkit_buttons_length_cap = blink::
WebGamepad
::buttonsLengthCap;
/external/chromium_org/content/renderer/
gamepad_shared_memory_reader.cc
145
const blink::
WebGamepad
& gamepad) {
155
const blink::
WebGamepad
& gamepad) {
renderer_webkitplatformsupport_impl.cc
125
using blink::
WebGamepad
;
[
all
...]
/external/chromium_org/content/public/test/
layouttest_support.h
19
class
WebGamepad
;
/external/chromium_org/content/shell/renderer/test_runner/
WebTestDelegate.h
22
class
WebGamepad
;
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
NavigatorGamepad.cpp
43
static void sampleGamepad(unsigned index, T& gamepad, const blink::
WebGamepad
&
webGamepad
)
45
gamepad.setId(
webGamepad
.id);
47
gamepad.setConnected(
webGamepad
.connected);
48
gamepad.setTimestamp(
webGamepad
.timestamp);
49
gamepad.setMapping(
webGamepad
.mapping);
50
gamepad.setAxes(
webGamepad
.axesLength,
webGamepad
.axes);
51
gamepad.setButtons(
webGamepad
.buttonsLength,
webGamepad
.buttons)
[
all
...]
/external/chromium_org/content/test/
layouttest_support.cc
35
using blink::
WebGamepad
;
Completed in 425 milliseconds
1
2