Searched defs:axis (Results 1 - 25 of 49) sorted by relevance

12

/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);
H A DFunctionPattern.java46 public FunctionPattern(Expression expr, int axis, int predaxis) argument
49 super(0, null, null, axis, predaxis);
H A DStepPattern.java43 /** The axis for this test. */
53 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
56 public StepPattern(int whatToShow, String namespace, String name, int axis, argument
62 m_axis = axis;
70 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
73 public StepPattern(int whatToShow, int axis, int axisForPredicate) argument
78 m_axis = axis;
915 * Set the axis that this step should follow.
918 * @param axis The Axis for this test, one of of Axes.ANCESTORORSELF, etc.
920 public void setAxis(int axis) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DOneStepIteratorForward.java40 /** The traversal axis from where the nodes will be filtered. */
65 * @param axis One of the org.apache.xml.dtm.Axis integers.
69 public OneStepIteratorForward(int axis) argument
73 m_axis = axis;
147 * Returns the axis being iterated, if it is known.
149 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
H A DReverseAxesWalker.java40 ReverseAxesWalker(LocPathIterator locPathIterator, int axis) argument
42 super(locPathIterator, axis);
245 /** The DTM inner traversal class, that corresponds to the super axis. */
H A DOneStepIterator.java41 /** The traversal axis from where the nodes will be filtered. */
44 /** The DTM inner traversal class, that corresponds to the super axis. */
71 * @param axis One of Axis.Child, etc., or -1 if the axis is unknown.
75 public OneStepIterator(DTMAxisIterator iterator, int axis) argument
81 m_axis = axis;
320 * Returns the axis being iterated, if it is known.
322 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
H A DAxesWalker.java50 public AxesWalker(LocPathIterator locPathIterator, int axis) argument
53 m_axis = axis;
205 int axis = getAxis();
206 int bit = WalkerFactory.getAnalysisBitFromAxes(axis);
501 * Returns the axis being iterated, if it is known.
503 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
585 /** The traversal axis from where the nodes will be filtered. */
588 /** The DTM inner traversal class, that corresponds to the super axis. */
/external/freetype/include/freetype/
H A Dftmm.h44 /* setting design axis coordinates. */
61 /* A simple structure used to model a given axis in design space for */
67 /* name :: The axis's name. */
69 /* minimum :: The axis's minimum design coordinate. */
71 /* maximum :: The axis's maximum design coordinate. */
101 /* axis :: A table of axis descriptors. */
107 FT_MM_Axis axis[T1_MAX_MM_AXIS]; member in struct:FT_Multi_Master_
118 /* A simple structure used to model a given axis in design space for */
122 /* name :: The axis'
215 FT_Var_Axis* axis; member in struct:FT_MM_Var_
[all...]
/external/quake/quake/src/QW/server/
H A Dworld.h46 int axis; // -1 = leaf node member in struct:areanode_s
/external/webkit/Source/WebCore/xml/
H A DXPathParser.h50 Step::Axis axis; member in struct:WebCore::XPath::Token
56 Token(int t, Step::Axis v): type(t), axis(v) {}
H A DXPathStep.cpp44 Step::Step(Axis axis, const NodeTest& nodeTest, const Vector<Predicate*>& predicates) argument
45 : m_axis(axis)
143 static inline Node::NodeType primaryNodeType(Step::Axis axis) argument
145 switch (axis) {
156 static inline bool nodeMatchesBasicTest(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest) argument
173 if (axis == Step::AttributeAxis) {
176 // In XPath land, namespace nodes are not accessible on the attribute axis.
186 // Node test on the namespace axis is not implemented yet, the caller has a check for it.
187 ASSERT(axis != Step::NamespaceAxis);
190 ASSERT(primaryNodeType(axis)
212 nodeMatches(Node* node, Step::Axis axis, const Step::NodeTest& nodeTest) argument
[all...]
H A DXPathStep.h86 Axis axis() const { return m_axis; } function in class:WebCore::XPath::Step
/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/freetype/src/autofit/
H A Dafcjk.h101 AF_CJKAxisRec axis[AF_DIMENSION_MAX]; member in struct:AF_CJKMetricsRec_
H A Daflatin.h121 AF_LatinAxisRec axis[AF_DIMENSION_MAX]; member in struct:AF_LatinMetricsRec_
H A Dafloader.c188 AF_AxisHints axis = &hints->axis[AF_DIMENSION_HORZ]; local
189 AF_Edge edge1 = axis->edges; /* leftmost edge */
191 axis->num_edges - 1; /* rightmost edge */
194 if ( axis->num_edges > 1 && AF_HINTS_DO_ADVANCE( hints ) )
H A Dafwarp.c168 AF_AxisHints axis; local
199 axis = &hints->axis[dim];
200 segments = axis->segments;
201 num_segments = axis->num_segments;
/external/webkit/Source/WebCore/html/
H A DHTMLTableCellElement.cpp142 String HTMLTableCellElement::axis() const function in class:WebCore::HTMLTableCellElement
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBaseTraversers.java95 * over an XPath axis, though perhaps not in document order.
97 * @param axis One of Axes.ANCESTORORSELF, etc.
99 * @return A DTMAxisTraverser, or null if the given axis isn't supported.
101 public DTMAxisTraverser getAxisTraverser(final int axis) argument
113 traverser = m_traversers[axis]; // Share/reuse existing traverser
119 switch (axis) // Generate new traverser
184 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_UNKNOWN_AXIS_TYPE, new Object[]{Integer.toString(axis)})); //"Unknown axis traversal type: "+axis);
188 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_AXIS_TRAVERSER_NOT_SUPPORTED, new Object[]{Axis.getNames(axis)}));
[all...]
H A DDTMDefaultBaseIterators.java94 * @param axis One of Axes.ANCESTORORSELF, etc.
97 * @return A DTMAxisIterator, or null if the given axis isn't supported.
99 public DTMAxisIterator getTypedAxisIterator(int axis, int type) argument
113 // iterator = new FilterIterator(getAxisIterator(axis),
118 switch (axis)
161 new Object[]{Axis.getNames(axis)}));
162 //"Error: typed iterator for axis "
163 //+ Axis.names[axis] + "not implemented");
176 * @param axis One of Axes.ANCESTORORSELF, etc.
178 * @return A DTMAxisIterator, or null if the given axis is
180 getAxisIterator(final int axis) argument
[all...]
/external/oprofile/libpp/
H A Darrange_profiles.h121 * The "axis" says what we've used to split the sample
150 /// the axis of the classes
151 axis_types axis; member in struct:profile_classes
/external/qemu/distrib/sdl-1.2.12/src/joystick/
H A DSDL_joystick.c221 * Get the number of multi-dimensional axis controls on a joystick
265 * Get the current state of an axis control on a joystick
267 Sint16 SDL_JoystickGetAxis(SDL_Joystick *joystick, int axis) argument
274 if ( axis < joystick->naxes ) {
275 state = joystick->axes[axis];
303 * Get the ball axis change since the last poll
419 int SDL_PrivateJoystickAxis(SDL_Joystick *joystick, Uint8 axis, Sint16 value) argument
424 joystick->axes[axis] = value;
433 event.jaxis.axis = axis;
[all...]
/external/skia/src/utils/
H A DSkColorMatrix.cpp24 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) { argument
29 this->setSinCos(axis, S, C);
32 void SkColorMatrix::setSinCos(Axis axis, SkScalar sine, SkScalar cosine) { argument
33 SkASSERT((unsigned)axis < 3);
40 const uint8_t* index = gRotateIndex + axis * 4;
49 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) { argument
51 tmp.setRotate(axis, degrees);
55 void SkColorMatrix::postRotate(Axis axis, SkScalar degrees) { argument
57 tmp.setRotate(axis, degrees);
H A DSkCamera.cpp275 SkUnit3D axis, zenith, cross; local
277 fAxis.normalize(&axis);
280 SkScalar dot = SkUnit3D::Dot(*(const SkUnit3D*)(const void*)&fZenith, axis);
282 zenith.fX = fZenith.fX - SkUnitScalarMul(dot, axis.fX);
283 zenith.fY = fZenith.fY - SkUnitScalarMul(dot, axis.fY);
284 zenith.fZ = fZenith.fZ - SkUnitScalarMul(dot, axis.fZ);
289 SkUnit3D::Cross(axis, zenith, &cross);
297 orien->set(SkMatrix::kMScaleX, SkUnitScalarMul(x, axis.fX) - SkUnitScalarMul(z, cross.fX));
298 orien->set(SkMatrix::kMSkewX, SkUnitScalarMul(x, axis.fY) - SkUnitScalarMul(z, cross.fY));
299 orien->set(SkMatrix::kMTransX, SkUnitScalarMul(x, axis
[all...]
/external/qemu/distrib/sdl-1.2.12/src/joystick/os2/
H A DSDL_sysjoystick.c154 ucNewJoystickMask = 0x0F; /* read all 4 joystick axis */
187 GAME_3POS_STRUCT * axis[4]; local
188 axis[0] = &stGameCalib.Ax;
189 axis[1] = &stGameCalib.Ay;
190 axis[2] = &stGameCalib.Bx;
191 axis[3] = &stGameCalib.By;
213 SYS_JoyData[0].axes_min[i] = axis[i]->lower;
214 SYS_JoyData[0].axes_med[i] = axis[i]->centre;
215 SYS_JoyData[0].axes_max[i] = axis[i]->upper;
218 if (joycfg.buttons>=5) SYS_JoyData[0].buttoncalc[0]=((axis[
[all...]

Completed in 358 milliseconds

12