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

1 2 3

  /dalvik/libcore/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;
SelfIteratorNoPredicate.java 21 package org.apache.xpath.axes;
29 * "." patterns, that is, the self axes without any predicates.
30 * @see org.apache.xpath.axes.LocPathIterator
ChildIterator.java 21 package org.apache.xpath.axes;
32 * @see org.apache.xpath.axes.LocPathIterator
ChildTestIterator.java 21 package org.apache.xpath.axes;
32 * @see org.apache.xpath.axes.BasicTestIterator
OneStepIteratorForward.java 21 package org.apache.xpath.axes;
34 * @see org.apache.xpath.axes#ChildTestIterator
63 * Create a OneStepIterator object that will just traverse the self axes.
WalkingIteratorSorted.java 21 package org.apache.xpath.axes;
FilterExprIterator.java 21 package org.apache.xpath.axes;
  /frameworks/base/awt/java/awt/font/
MultipleMaster.java 57 * @param axes
61 public Font deriveMMFont(float[] axes);
64 * Gets default design values for the axes.
66 * @return the default design values for the axes.
  /external/qemu/distrib/sdl-1.2.12/src/joystick/
SDL_sysjoystick.h 34 Sint16 *axes; /* Current axis states */ member in struct:_SDL_Joystick
SDL_joystick.c 123 joystick->axes = (Sint16 *)SDL_malloc
138 if ( ((joystick->naxes > 0) && !joystick->axes)
146 if ( joystick->axes ) {
147 SDL_memset(joystick->axes, 0,
275 state = joystick->axes[axis];
277 SDL_SetError("Joystick only has %d axes", joystick->naxes);
386 if ( joystick->axes ) {
387 SDL_free(joystick->axes);
424 joystick->axes[axis] = value;
  /dalvik/libcore/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;
FuncLast.java 25 import org.apache.xpath.axes.SubContextList;
FuncPosition.java 26 import org.apache.xpath.axes.SubContextList;
  /external/qemu/distrib/sdl-1.2.12/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]);
  /dalvik/libcore/xml/src/main/java/org/apache/xpath/
XPathVisitor.java 23 import org.apache.xpath.axes.LocPathIterator;
24 import org.apache.xpath.axes.UnionPathIterator;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/os2/
SDL_sysjoystick.c 43 #define MAX_AXES 4 /* each joystick can have up to 4 axes */
47 #define AXIS_MIN -32768 /* minimum value for axes coordinate */
48 #define AXIS_MAX 32767 /* maximum value for axes coordinate */
50 /* limit axes to 256 possible positions to filter out noise */
60 char axes; // Number of axes member in struct:SYS_JoyData_s
64 int axes_min[MAX_AXES]; // minimum callibration value for axes
65 int axes_med[MAX_AXES]; // medium callibration value for axes
66 int axes_max[MAX_AXES]; // maximum callibration value for axes
89 unsigned int axes; member in struct:_joycfg
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 25 import org.apache.xpath.axes.LocPathIterator;
  /external/qemu/android/skin/
trackball.c 164 VectorRec axes[3]; /* current ball axes */ member in struct:SkinTrackBall
231 /* init axes */
232 ball->axes[0][0] = 1.; ball->axes[0][1] = 0.; ball->axes[0][2] = 0.;
233 ball->axes[1][0] = 0.; ball->axes[1][1] = 1.; ball->axes[1][2] = 0.;
234 ball->axes[2][0] = 0.; ball->axes[2][1] = 0.; ball->axes[2][2] = 1.
    [all...]
  /external/guava/src/com/google/common/collect/
Sets.java 758 * @param <B> any common base class shared by all axes (often just {@link
803 * @param <B> any common base class shared by all axes (often just {@link
817 final ImmutableList<Axis> axes;
828 this.axes = builder.build();
849 Object[] tuple = new Object[axes.size()];
851 tuple[i] = axes.get(i).getForIndex(index);
867 int dimensions = axes.size()
    [all...]
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 34 import org.apache.xpath.axes.OneStepIteratorForward;

Completed in 833 milliseconds

1 2 3