Searched refs:axis (Results 1 - 25 of 178) sorted by relevance

12345678

/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DWalkingIteratorSorted.java104 int axis = walker.getAxis();
108 boolean isSimpleDownAxis = ((axis == Axis.CHILD)
109 || (axis == Axis.SELF)
110 || (axis == Axis.ROOT));
113 if(isSimpleDownAxis || (axis == -1))
120 if(walker.isDocOrdered() && (axis == Axis.DESCENDANT ||
121 axis == Axis.DESCENDANTORSELF || axis == Axis.DESCENDANTSFROMROOT
122 || axis == Axis.DESCENDANTSORSELFFROMROOT) || (axis
[all...]
/external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/collision/shapes/
H A DCylinderCollisionShape.java50 protected int axis; field in class:CylinderCollisionShape
61 this.axis = 2;
66 * Creates a cylinder shape around the given axis from the given halfextents
68 * @param axis (0=X,1=Y,2=Z)
70 public CylinderCollisionShape(Vector3f halfExtents, int axis) { argument
72 this.axis = axis;
81 return axis;
88 capsule.write(axis, "axis",
119 createShape(int axis, Vector3f halfExtents) argument
[all...]
H A DCapsuleCollisionShape.java48 protected int axis; field in class:CapsuleCollisionShape
61 this.axis=1;
66 * creates a capsule shape around the given axis (0=X,1=Y,2=Z)
69 * @param axis
71 public CapsuleCollisionShape(float radius, float height, int axis) { argument
74 this.axis=axis;
87 return axis;
95 capsule.write(axis, "axis",
127 createShape(int axis, float radius, float height) argument
[all...]
H A DConeCollisionShape.java24 protected int axis; field in class:ConeCollisionShape
29 public ConeCollisionShape(float radius, float height, int axis) { argument
32 this.axis = axis;
39 this.axis = PhysicsSpace.AXIS_Y;
52 capsule.write(axis, "axis", 0.5f);
60 radius = capsule.readFloat("axis", 0.5f);
65 objectId = createShape(axis, radius, height);
67 // if (axis
80 createShape(int axis, float radius, float height) argument
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/collision/bih/
H A DTriangleAxisComparator.java40 private final int axis; field in class:TriangleAxisComparator
42 public TriangleAxisComparator(int axis){ argument
43 this.axis = axis;
50 switch (axis){
H A DBIHTree.java167 private int sortTriangles(int l, int r, float split, int axis) { argument
180 if (v1.get(axis) > split) {
193 private void setMinMax(BoundingBox bbox, boolean doMin, int axis, float value) { argument
198 min.set(axis, value);
200 max.set(axis, value);
206 private float getMinMax(BoundingBox bbox, boolean doMin, int axis) { argument
208 return bbox.getMin(null).get(axis);
210 return bbox.getMax(null).get(axis);
219 // int axis = depth % 3;
220 // float split = currentBox.getCenter().get(axis);
[all...]
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
H A DCapsuleCollisionShape.java50 protected int axis; field in class:CapsuleCollisionShape
63 this.axis=1;
69 * creates a capsule shape around the given axis (0=X,1=Y,2=Z)
72 * @param axis
74 public CapsuleCollisionShape(float radius, float height, int axis) { argument
77 this.axis=axis;
90 return axis;
98 capsule.write(axis, "axis",
[all...]
H A DConeCollisionShape.java26 protected int axis; field in class:ConeCollisionShape
31 public ConeCollisionShape(float radius, float height, int axis) { argument
34 this.axis = axis;
41 this.axis = PhysicsSpace.AXIS_Y;
54 capsule.write(axis, "axis", 0.5f);
62 radius = capsule.readFloat("axis", 0.5f);
67 if (axis == PhysicsSpace.AXIS_X) {
69 } else if (axis
[all...]
H A DCylinderCollisionShape.java52 protected int axis; field in class:CylinderCollisionShape
63 this.axis = 2;
68 * Creates a cylinder shape around the given axis from the given halfextents
70 * @param axis (0=X,1=Y,2=Z)
72 public CylinderCollisionShape(Vector3f halfExtents, int axis) { argument
74 this.axis = axis;
83 return axis;
90 capsule.write(axis, "axis",
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DAxis.java34 * The ancestor axis contains the ancestors of the context node;
36 * node and the parent's parent and so on; thus, the ancestor axis will
42 * the ancestor-or-self axis contains the context node and the ancestors of
43 * the context node; thus, the ancestor axis will always include the
49 * the attribute axis contains the attributes of the context node; the axis
54 /** The child axis contains the children of the context node. */
58 * The descendant axis contains the descendants of the context node;
60 * descendant axis never contains attribute or namespace nodes.
65 * The descendant-or-self axis contain
208 isReverse(int axis) argument
[all...]
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_collision_shapes_CapsuleCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
52 switch(axis){
48 Java_com_jme3_bullet_collision_shapes_CapsuleCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_ConeCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) {
52 switch (axis) {
48 Java_com_jme3_bullet_collision_shapes_ConeCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jfloat radius, jfloat height) argument
H A Dcom_jme3_bullet_collision_shapes_CylinderCollisionShape.cpp49 (JNIEnv * env, jobject object, jint axis, jobject halfExtents) {
54 switch (axis) {
48 Java_com_jme3_bullet_collision_shapes_CylinderCollisionShape_createShape(JNIEnv * env, jobject object, jint axis, jobject halfExtents) argument
/external/jmonkeyengine/engine/src/core/com/jme3/texture/
H A DTextureArray.java75 public WrapMode getWrap(WrapAxis axis) { argument
76 switch (axis) {
82 throw new IllegalArgumentException("invalid WrapAxis: " + axis);
87 public void setWrap(WrapAxis axis, WrapMode mode) { argument
90 } else if (axis == null) {
91 throw new IllegalArgumentException("axis can not be null.");
93 switch (axis) {
H A DTexture2D.java115 * particular axis.
117 * @param axis
118 * the texture axis to define a wrapmode on.
120 * the wrap mode for the given axis of the texture.
122 * if axis or mode are null
124 public void setWrap(WrapAxis axis, WrapMode mode) { argument
127 } else if (axis == null) {
128 throw new IllegalArgumentException("axis can not be null.");
130 switch (axis) {
143 * <code>setWrap</code> sets the wrap mode of this texture for all axis
168 getWrap(WrapAxis axis) argument
[all...]
H A DTexture3D.java117 * particular axis.
119 * @param axis
120 * the texture axis to define a wrapmode on.
122 * the wrap mode for the given axis of the texture.
124 * if axis or mode are null
126 public void setWrap(WrapAxis axis, WrapMode mode) { argument
129 } else if (axis == null) {
130 throw new IllegalArgumentException("axis can not be null.");
132 switch (axis) {
146 * <code>setWrap</code> sets the wrap mode of this texture for all axis
172 getWrap(WrapAxis axis) argument
[all...]
H A DTextureCubeMap.java93 * particular axis.
95 * @param axis
96 * the texture axis to define a wrapmode on.
98 * the wrap mode for the given axis of the texture.
100 * if axis or mode are null
102 public void setWrap(WrapAxis axis, WrapMode mode) { argument
105 } else if (axis == null) {
106 throw new IllegalArgumentException("axis can not be null.");
108 switch (axis) {
122 * <code>setWrap</code> sets the wrap mode of this texture for all axis
148 getWrap(WrapAxis axis) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
H A DContextMatchStepPattern.java41 public ContextMatchStepPattern(int axis, int paxis) argument
43 super(DTMFilter.SHOW_ALL, axis, paxis);
99 int axis = m_axis;
101 boolean needToTraverseAttrs = WalkerFactory.isDownwardAxisOfMany(axis);
105 if((Axis.PRECEDING == axis) && iterRootIsAttr)
107 axis = Axis.PRECEDINGANDANCESTOR;
110 traverser = dtm.getAxisTraverser(axis);
/external/freetype/src/autofit/
H A Dafhints.c24 /* Get new segment for given axis. */
27 af_axis_hints_new_segment( AF_AxisHints axis,
35 if ( axis->num_segments >= axis->max_segments )
37 FT_Int old_max = axis->max_segments;
52 if ( FT_RENEW_ARRAY( axis->segments, old_max, new_max ) )
55 axis->max_segments = new_max;
58 segment = axis->segments + axis->num_segments++;
66 /* Get new edge for given axis, directio
248 AF_AxisHints axis = &hints->axis[dimension]; local
291 AF_AxisHints axis; local
318 AF_AxisHints axis; local
356 AF_AxisHints axis = &hints->axis[dimension]; local
531 AF_AxisHints axis = &hints->axis[dim]; local
817 AF_AxisHints axis = & hints->axis[dim]; local
894 AF_AxisHints axis = &hints->axis[dim]; local
[all...]
H A Daflatin2.c68 metrics->axis[AF_DIMENSION_HORZ].width_count = 0;
69 metrics->axis[AF_DIMENSION_VERT].width_count = 0;
104 AF_LatinAxis axis = &metrics->axis[dim]; local
105 AF_AxisHints axhints = &hints->axis[dim];
136 axis->widths[num_widths++].org = dist;
140 af_sort_widths( num_widths, axis->widths );
141 axis->width_count = num_widths;
147 AF_LatinAxis axis = &metrics->axis[di local
193 AF_LatinAxis axis = &metrics->axis[AF_DIMENSION_VERT]; local
512 AF_LatinAxis axis; local
681 AF_AxisHints axis = &hints->axis[dim]; local
938 AF_AxisHints axis = &hints->axis[dim]; local
1038 AF_AxisHints axis = &hints->axis[dim]; local
1362 AF_AxisHints axis = &hints->axis[AF_DIMENSION_VERT]; local
1601 AF_LatinAxis axis = & metrics->axis[dim]; local
1810 AF_AxisHints axis = &hints->axis[dim]; local
[all...]
H A Daflatin.c65 metrics->axis[AF_DIMENSION_HORZ].width_count = 0;
66 metrics->axis[AF_DIMENSION_VERT].width_count = 0;
105 AF_LatinAxis axis = &metrics->axis[dim]; local
106 AF_AxisHints axhints = &hints->axis[dim];
137 axis->widths[num_widths++].org = dist;
141 af_sort_widths( num_widths, axis->widths );
142 axis->width_count = num_widths;
148 AF_LatinAxis axis = &metrics->axis[di local
197 AF_LatinAxis axis = &metrics->axis[AF_DIMENSION_VERT]; local
529 AF_LatinAxis axis; local
729 AF_AxisHints axis = &hints->axis[dim]; local
949 AF_AxisHints axis = &hints->axis[dim]; local
1042 AF_AxisHints axis = &hints->axis[dim]; local
1357 AF_AxisHints axis = &hints->axis[AF_DIMENSION_VERT]; local
1593 AF_LatinAxis axis = & metrics->axis[dim]; local
1803 AF_AxisHints axis = &hints->axis[dim]; local
[all...]
H A Dafcjk.c79 metrics->axis[AF_DIMENSION_HORZ].width_count = 0;
80 metrics->axis[AF_DIMENSION_VERT].width_count = 0;
119 AF_CJKAxis axis = &metrics->axis[dim]; local
120 AF_AxisHints axhints = &hints->axis[dim];
149 axis->widths[num_widths++].org = dist;
153 af_sort_widths( num_widths, axis->widths );
154 axis->width_count = num_widths;
160 AF_CJKAxis axis = &metrics->axis[di local
280 AF_CJKAxis axis; local
577 AF_CJKAxis axis; local
685 AF_AxisHints axis = &hints->axis[dim]; local
729 AF_AxisHints axis = &hints->axis[dim]; local
894 AF_AxisHints axis = &hints->axis[dim]; local
1174 AF_AxisHints axis = &hints->axis[dim]; local
1384 AF_CJKAxis axis = & metrics->axis[dim]; local
1672 AF_AxisHints axis = &hints->axis[dim]; local
2016 AF_AxisHints axis = & hints->axis[dim]; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/joystick/
H A DSDL_joystick_c.h32 Uint8 axis, Sint16 value);
/external/webkit/Source/WebCore/xml/
H A DXPathPath.cpp121 bool needToCheckForDuplicateNodes = !nodes.subtreesAreDisjoint() || (step->axis() != Step::ChildAxis && step->axis() != Step::SelfAxis
122 && step->axis() != Step::DescendantAxis && step->axis() != Step::DescendantOrSelfAxis && step->axis() != Step::AttributeAxis);
128 if (nodes.subtreesAreDisjoint() && (step->axis() == Step::ChildAxis || step->axis() == Step::SelfAxis))
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLTableCellElement07.js78 The axis attribute specifies the names group of related headers for table
104 vaxis = testNode.axis;

Completed in 2356 milliseconds

12345678