HomeSort by relevance Sort by last modified time
    Searched refs:axes (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /external/apache-xml/src/main/java/org/apache/xpath/axes/
PathComponent.java 21 package org.apache.xpath.axes;
SubContextList.java 21 package org.apache.xpath.axes;
RTFIterator.java 28 package org.apache.xpath.axes;
ContextNodeList.java 21 package org.apache.xpath.axes;
AttributeIterator.java 21 package org.apache.xpath.axes;
28 * attribute axes patterns.
29 * @see org.apache.xpath.axes#ChildTestIterator
IteratorPool.java 21 package org.apache.xpath.axes;
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
AbstractBox.java 72 Vector3f[] axes = { local
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[2])
    [all...]
  /external/chromium_org/content/browser/gamepad/
gamepad_standard_mappings_linux.cc 29 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[4]
    [all...]
gamepad_standard_mappings_win.cc 38 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[0])
    [all...]
gamepad_provider_unittest.cc 75 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/
Gamepad.idl 32 readonly attribute float[] axes;
Gamepad.h 55 const FloatVector& axes() const { return m_axes; } function in class:WebCore::Gamepad
56 void axes(unsigned count, float* data);
Gamepad.cpp 39 void Gamepad::axes(unsigned count, float* data) function in class:WebCore::Gamepad
  /external/chromium_org/ppapi/shared_impl/
ppb_gamepad_shared.cc 21 COMPILE_ASSERT(sizeof(output_pad.axes) == sizeof(webkit_pad.axes),
28 memcpy(output_pad.axes, webkit_pad.axes, sizeof(output_pad.axes));
ppb_gamepad_shared.h 37 // 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/third_party/WebKit/Source/core/platform/chromium/
GamepadsChromium.cpp 51 gamepad->axes(webGamepad.axesLength, webGamepad.axes);
  /external/chromium_org/ppapi/c/
ppb_gamepad.h 35 * 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/
WebGamepad.h 65 // 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:WebKit::WebGamepad
  /external/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_sysjoystick.h 34 Sint16 *axes; /* Current axis states */ member in struct:_SDL_Joystick
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncCurrent.java 26 import org.apache.xpath.axes.LocPathIterator;
27 import org.apache.xpath.axes.PredicatedNodeTest;
30 import org.apache.xpath.axes.SubContextList;
  /frameworks/base/tools/velocityplot/
velocityplot.py 133 axes = self.fig.add_axes([0.1, top, 0.8, height],
140 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
141 axes.set_xlabel('time (s)', fontsize=10, fontweight='bold')
142 axes.set_ylabel(ylabel, fontsize=10, fontweight='bold')
143 axes.set_xticks(range(0, timespan + 1, timeticks))
144 axes.set_yticks(yticks)
145 axes.grid(True)
147 for label in axes.get_xticklabels():
149 for label in axes.get_yticklabels()
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/joystick/beos/
SDL_bejoystick.cc 122 /* 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/
XPathVisitor.java 23 import org.apache.xpath.axes.LocPathIterator;
24 import org.apache.xpath.axes.UnionPathIterator;
  /external/chromium_org/ppapi/api/
ppb_gamepad.idl 23 * 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/
AbsPathChecker.java 25 import org.apache.xpath.axes.LocPathIterator;

Completed in 3570 milliseconds

1 2 3 4 5