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

1 2 3 4

  /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;
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;
  /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/qemu/distrib/sdl-1.2.15/src/joystick/
SDL_sysjoystick.h 34 Sint16 *axes; /* Current axis states */ member in struct:_SDL_Joystick
SDL_joystick.c 129 joystick->axes = (Sint16 *)SDL_malloc
144 if ( ((joystick->naxes > 0) && !joystick->axes)
153 if ( joystick->axes ) {
154 SDL_memset(joystick->axes, 0,
277 state = joystick->axes[axis];
279 SDL_SetError("Joystick only has %d axes", joystick->naxes);
385 if ( joystick->axes ) {
386 SDL_free(joystick->axes);
442 joystick->axes[axis] = value;
  /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;
FuncLast.java 25 import org.apache.xpath.axes.SubContextList;
FuncPosition.java 26 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/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 25 import org.apache.xpath.axes.LocPathIterator;
  /external/qemu/android/skin/
trackball.c 165 VectorRec axes[3]; /* current ball axes */ member in struct:SkinTrackBall
232 /* init axes */
233 ball->axes[0][0] = 1.; ball->axes[0][1] = 0.; ball->axes[0][2] = 0.;
234 ball->axes[1][0] = 0.; ball->axes[1][1] = 1.; ball->axes[1][2] = 0.;
235 ball->axes[2][0] = 0.; ball->axes[2][1] = 0.; ball->axes[2][2] = 1.
    [all...]
  /frameworks/base/tools/orientationplot/
orientationplot.py 207 axes = self.fig.add_axes([0.1, top, 0.8, height],
214 axes.text(0.02, 0.02, title, transform=axes.transAxes, fontsize=10, fontweight='bold')
215 axes.set_xlabel('time (s)', fontsize=10, fontweight='bold')
216 axes.set_ylabel(ylabel, fontsize=10, fontweight='bold')
217 axes.set_xticks(range(0, timespan + 1, timeticks))
218 axes.set_yticks(yticks)
219 axes.grid(True)
221 for label in axes.get_xticklabels():
223 for label in axes.get_yticklabels()
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
ObjectHelper.java 208 Vector3f[] axes = new Vector3f[3]; local
209 quaternion.toAxes(axes);
211 ((DirectionalLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp in blender
213 ((DirectionalLight)light).setDirection(axes[2].negate());
219 Vector3f[] axes = new Vector3f[3]; local
220 quaternion.toAxes(axes);
222 ((SpotLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp in blender
224 ((SpotLight)light).setDirection(axes[2].negate());
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 34 import org.apache.xpath.axes.OneStepIteratorForward;

Completed in 159 milliseconds

1 2 3 4