Searched refs:axes (Results 1 - 25 of 93) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DPathComponent.java21 package org.apache.xpath.axes;
H A DSubContextList.java21 package org.apache.xpath.axes;
H A DRTFIterator.java28 package org.apache.xpath.axes;
H A DContextNodeList.java21 package org.apache.xpath.axes;
H A DAttributeIterator.java21 package org.apache.xpath.axes;
28 * attribute axes patterns.
29 * @see org.apache.xpath.axes#ChildTestIterator
H A DIteratorPool.java21 package org.apache.xpath.axes;
H A DSelfIteratorNoPredicate.java21 package org.apache.xpath.axes;
29 * "." patterns, that is, the self axes without any predicates.
30 * @see org.apache.xpath.axes.LocPathIterator
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
H A DAbstractBox.java72 Vector3f[] axes = {
78 center.subtract(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]),
79 center.add(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]),
80 center.add(axes[0]).addLocal(axes[1]).subtractLocal(axes[
[all...]
/external/chromium_org/content/browser/gamepad/
H A Dgamepad_standard_mappings_linux.cc29 mapped->buttons[kButtonLeftTrigger] = AxisToButton(input.axes[2]);
30 mapped->buttons[kButtonRightTrigger] = AxisToButton(input.axes[5]);
35 mapped->buttons[kButtonDpadUp] = AxisNegativeAsButton(input.axes[7]);
36 mapped->buttons[kButtonDpadDown] = AxisPositiveAsButton(input.axes[7]);
37 mapped->buttons[kButtonDpadLeft] = AxisNegativeAsButton(input.axes[6]);
38 mapped->buttons[kButtonDpadRight] = AxisPositiveAsButton(input.axes[6]);
40 mapped->axes[kAxisRightStickX] = input.axes[3];
41 mapped->axes[kAxisRightStickY] = input.axes[
[all...]
H A Dgamepad_standard_mappings_win.cc38 mapped->axes[0] = NormalizeDirectInputAxis(input.axes[0]);
39 mapped->axes[1] = NormalizeDirectInputAxis(input.axes[1]);
40 mapped->axes[2] = NormalizeDirectInputAxis(input.axes[2]);
41 mapped->axes[3] = NormalizeDirectInputAxis(input.axes[5]);
57 mapped->axes[0] = NormalizeDirectInputAxis(input.axes[
[all...]
H A Dgamepad_provider_unittest.cc75 test_data.items[0].axes[0] = -1.f;
76 test_data.items[0].axes[1] = .5f;
107 EXPECT_EQ(-1.f, output.items[0].axes[0]);
108 EXPECT_EQ(0.5f, output.items[0].axes[1]);
120 no_button_data.items[0].axes[0] = -1.f;
121 no_button_data.items[0].axes[1] = .5f;
/external/chromium_org/third_party/WebKit/Source/modules/gamepad/
H A DGamepad.idl32 readonly attribute float[] axes;
H A DGamepad.h55 const FloatVector& axes() const { return m_axes; } function in class:WebCore::Gamepad
56 void axes(unsigned count, float* data);
H A DGamepad.cpp38 void Gamepad::axes(unsigned count, float* data) function in class:WebCore::Gamepad
H A DNavigatorGamepad.cpp51 gamepad->axes(webGamepad.axesLength, webGamepad.axes);
/external/chromium_org/ppapi/shared_impl/
H A Dppb_gamepad_shared.cc21 COMPILE_ASSERT(sizeof(output_pad.axes) == sizeof(webkit_pad.axes),
28 memcpy(output_pad.axes, webkit_pad.axes, sizeof(output_pad.axes));
H A Dppb_gamepad_shared.h37 // Number of valid entries in the axes array.
40 // Normalized values representing axes, in the range [-1..1].
41 float axes[kAxesLengthCap]; member in struct:ppapi::WebKitGamepad
/external/chromium_org/ppapi/c/
H A Dppb_gamepad.h35 * Number of valid elements in the |axes| array.
39 * Normalized values for the axes, indices valid up to |axes_length|-1. Axis
42 float axes[16]; member in struct:PP_GamepadSampleData
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebGamepad.h65 // Number of valid entries in the axes array.
68 // Normalized values representing axes, in the range [-1..1].
69 float axes[axesLengthCap]; member in class:blink::WebGamepad
/external/qemu/distrib/sdl-1.2.15/src/joystick/
H A DSDL_sysjoystick.h34 Sint16 *axes; /* Current axis states */ member in struct:_SDL_Joystick
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncCurrent.java26 import org.apache.xpath.axes.LocPathIterator;
27 import org.apache.xpath.axes.PredicatedNodeTest;
30 import org.apache.xpath.axes.SubContextList;
/external/qemu/distrib/sdl-1.2.15/src/joystick/beos/
H A DSDL_bejoystick.cc122 /* Get the number of buttons, hats, and axes on the joystick */
163 int16 *axes; local
169 axes = joystick->hwdata->new_axes;
174 stick->GetAxisValues(axes);
180 change = ((int32)axes[i] - joystick->axes[i]);
182 SDL_PrivateJoystickAxis(joystick, i, axes[i]);
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java23 import org.apache.xpath.axes.LocPathIterator;
24 import org.apache.xpath.axes.UnionPathIterator;
/external/chromium_org/ppapi/api/
H A Dppb_gamepad.idl23 * Number of valid elements in the |axes| array.
28 * Normalized values for the axes, indices valid up to |axes_length|-1. Axis
31 float_t[16] axes;
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java25 import org.apache.xpath.axes.LocPathIterator;

Completed in 1006 milliseconds

1234