/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
D | AbstractBox.java | 72 Vector3f[] axes = { in computeVertices() local 78 center.subtract(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]), in computeVertices() 79 center.add(axes[0]).subtractLocal(axes[1]).subtractLocal(axes[2]), in computeVertices() 80 center.add(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]), in computeVertices() 81 center.subtract(axes[0]).addLocal(axes[1]).subtractLocal(axes[2]), in computeVertices() 82 center.add(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]), in computeVertices() 83 center.subtract(axes[0]).subtractLocal(axes[1]).addLocal(axes[2]), in computeVertices() 84 center.add(axes[0]).addLocal(axes[1]).addLocal(axes[2]), in computeVertices() 85 center.subtract(axes[0]).addLocal(axes[1]).addLocal(axes[2]) in computeVertices()
|
/external/qemu/android/skin/ |
D | trackball.c | 165 VectorRec axes[3]; /* current ball axes */ member 233 ball->axes[0][0] = 1.; ball->axes[0][1] = 0.; ball->axes[0][2] = 0.; in trackball_init() 234 ball->axes[1][0] = 0.; ball->axes[1][1] = 1.; ball->axes[1][2] = 0.; in trackball_init() 235 ball->axes[2][0] = 0.; ball->axes[2][1] = 0.; ball->axes[2][2] = 1.; in trackball_init() 456 rotator_apply( rot, ball->axes[0] ); in trackball_move() 457 rotator_apply( rot, ball->axes[1] ); in trackball_move() 458 rotator_apply( rot, ball->axes[2] ); in trackball_move() 483 fixedvector_from_vector( (Fix16Vector)&faxes[0], (Vector)&ball->axes[0] ); in trackball_refresh() 484 fixedvector_from_vector( (Fix16Vector)&faxes[1], (Vector)&ball->axes[1] ); in trackball_refresh() 485 fixedvector_from_vector( (Fix16Vector)&faxes[2], (Vector)&ball->axes[2] ); in trackball_refresh()
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/beos/ |
D | SDL_bejoystick.cc | 163 int16 *axes; in SDL_SYS_JoystickUpdate() local 169 axes = joystick->hwdata->new_axes; in SDL_SYS_JoystickUpdate() 174 stick->GetAxisValues(axes); in SDL_SYS_JoystickUpdate() 180 change = ((int32)axes[i] - joystick->axes[i]); in SDL_SYS_JoystickUpdate() 182 SDL_PrivateJoystickAxis(joystick, i, axes[i]); in SDL_SYS_JoystickUpdate()
|
/external/apache-xml/src/main/java/org/apache/xpath/functions/ |
D | FuncCurrent.java | 26 import org.apache.xpath.axes.LocPathIterator; 27 import org.apache.xpath.axes.PredicatedNodeTest; 30 import org.apache.xpath.axes.SubContextList;
|
D | FuncLast.java | 25 import org.apache.xpath.axes.SubContextList;
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/ |
D | SDL_joystick.c | 129 joystick->axes = (Sint16 *)SDL_malloc in SDL_JoystickOpen() 144 if ( ((joystick->naxes > 0) && !joystick->axes) in SDL_JoystickOpen() 153 if ( joystick->axes ) { in SDL_JoystickOpen() 154 SDL_memset(joystick->axes, 0, in SDL_JoystickOpen() 277 state = joystick->axes[axis]; in SDL_JoystickGetAxis() 385 if ( joystick->axes ) { in SDL_JoystickClose() 386 SDL_free(joystick->axes); in SDL_JoystickClose() 442 joystick->axes[axis] = value; in SDL_PrivateJoystickAxis()
|
D | SDL_sysjoystick.h | 34 Sint16 *axes; /* Current axis states */ member
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/ |
D | ObjectHelper.java | 208 Vector3f[] axes = new Vector3f[3]; in toObject() local 209 quaternion.toAxes(axes); in toObject() 211 …((DirectionalLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp i… in toObject() 213 ((DirectionalLight)light).setDirection(axes[2].negate()); in toObject() 219 Vector3f[] axes = new Vector3f[3]; in toObject() local 220 quaternion.toAxes(axes); in toObject() 222 …((SpotLight)light).setDirection(axes[1].negate());//-Z is the direction axis of area lamp in blend… in toObject() 224 ((SpotLight)light).setDirection(axes[2].negate()); in toObject()
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
D | XPathVisitor.java | 23 import org.apache.xpath.axes.LocPathIterator; 24 import org.apache.xpath.axes.UnionPathIterator;
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | Sets.java | 978 final ImmutableList<Axis> axes; 993 this.axes = builder.build(); 1016 Object[] tuple = new Object[axes.size()]; 1018 tuple[i] = axes.get(i).getForIndex(index); 1034 int dimensions = axes.size(); 1039 if (!axes.get(i).contains(tuple.get(i))) { 1051 return this.axes.equals(that.axes); 1062 for (int i = 0; i < axes.size(); i++) { 1065 return axes.hashCode() + adjust;
|
/external/guava/guava/src/com/google/common/collect/ |
D | Sets.java | 990 final ImmutableList<Axis> axes; 1005 this.axes = builder.build(); 1028 Object[] tuple = new Object[axes.size()]; 1030 tuple[i] = axes.get(i).getForIndex(index); 1046 int dimensions = axes.size(); 1051 if (!axes.get(i).contains(tuple.get(i))) { 1063 return this.axes.equals(that.axes); 1074 for (int i = 0; i < axes.size(); i++) { 1077 return axes.hashCode() + adjust;
|
/external/apache-xml/src/main/java/org/apache/xpath/axes/ |
D | PathComponent.java | 21 package org.apache.xpath.axes;
|
D | SubContextList.java | 21 package org.apache.xpath.axes;
|
D | RTFIterator.java | 28 package org.apache.xpath.axes;
|
D | ContextNodeList.java | 21 package org.apache.xpath.axes;
|
D | AttributeIterator.java | 21 package org.apache.xpath.axes;
|
D | IteratorPool.java | 21 package org.apache.xpath.axes;
|
D | SelfIteratorNoPredicate.java | 21 package org.apache.xpath.axes;
|
D | ChildIterator.java | 21 package org.apache.xpath.axes;
|
/external/qemu/distrib/sdl-1.2.15/ |
D | README.OS2 | 79 The Joystick detection only works for standard joysticks (2 buttons, 2 axes 87 So, it you have a Gravis GamePad with 4 axes, 2 buttons, 2 hats and 0 balls, 105 4 when using one joystick with 4 axes, 6 when using a joystick with 3 axes 106 and 8 when using a joystick with 2 axes. Notice however these are limitations 255 - Added support up to 8 buttons in 2 axes joysticks and 6 buttons in 3 axes joysticks.
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/darwin/ |
D | SDL_sysjoystick.c | 85 long axes; /* number of axis (calculated, not reported by device) */ member 320 pDevice->axes++; in HIDAddElement() 709 joystick->naxes = device->axes; in SDL_SYS_JoystickOpen() 736 for (i = 0; i < device->axes; i++) in SDL_SYS_JoystickUpdate() 754 if ( value != joystick->axes[i] ) in SDL_SYS_JoystickUpdate()
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | RedundentExprEliminator.java | 33 import org.apache.xpath.axes.AxesWalker; 34 import org.apache.xpath.axes.FilterExprIteratorSimple; 35 import org.apache.xpath.axes.FilterExprWalker; 36 import org.apache.xpath.axes.LocPathIterator; 37 import org.apache.xpath.axes.SelfIteratorNoPredicate; 38 import org.apache.xpath.axes.WalkerFactory; 39 import org.apache.xpath.axes.WalkingIterator;
|
D | AbsPathChecker.java | 25 import org.apache.xpath.axes.LocPathIterator;
|
/external/webkit/LayoutTests/fast/xpath/py-dom-xpath/ |
D | axes-expected.txt | 12 Test that the ancestor, descendant, following, preceding, and self axes partition the document
|
/external/apache-xml/src/main/java/org/apache/xpath/operations/ |
D | Variable.java | 32 import org.apache.xpath.axes.PathComponent; 33 import org.apache.xpath.axes.WalkerFactory;
|