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

1234

/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);
/external/droiddriver/src/io/appium/droiddriver/scroll/
H A DStepBasedScroller.java44 private final Axis axis; field in class:StepBasedScroller
54 * @param axis the axis this scroller can scroll
61 public StepBasedScroller(int maxScrolls, long perScrollTimeoutMillis, Axis axis, argument
65 this.axis = axis;
72 * perScrollTimeoutMillis, vertical axis, not startFromBegining.
133 PhysicalDirection backwardDirection = converter.toPhysicalDirection(axis, BACKWARD);
H A DAccessibilityEventScrollStepStrategy.java119 if (detectEnd(event, direction.axis())) {
136 protected boolean detectEnd(AccessibilityEvent event, Axis axis) { argument
145 if (axis == Axis.VERTICAL) {
147 } else if (axis == Axis.HORIZONTAL) {
216 protected boolean detectEnd(AccessibilityEvent event, Axis axis) { argument
H A DDirection.java53 public Axis axis() {
64 public Axis axis() {
75 public Axis axis() {
86 public Axis axis() {
92 public abstract Axis axis(); method in class:Direction.PhysicalDirection
163 if (toPhysicalDirection(physicalDirection.axis(), forward) == physicalDirection) {
170 public final PhysicalDirection toPhysicalDirection(Axis axis, LogicalDirection logicalDirection) { argument
171 switch (axis) {
/external/eigen/demos/opengl/
H A Dtrackball.cpp24 Vector3f axis = mLastPoint3D.cross(newPoint3D).normalized(); local
30 mpCamera->rotateAroundTarget(Quaternionf(AngleAxisf(angle, axis)));
32 mpCamera->localRotate(Quaternionf(AngleAxisf(-angle, axis)));
/external/guava/guava/src/com/google/common/collect/
H A DCartesianList.java69 private int getAxisIndexForProductIndex(int index, int axis) { argument
70 return (index / axesSizeProduct[axis + 1]) % axes.get(axis).size();
84 public E get(int axis) {
85 checkElementIndex(axis, size());
86 int axisIndex = getAxisIndexForProductIndex(index, axis);
87 return axes.get(axis).get(axisIndex);
/external/opencv3/3rdparty/openexr/Imath/
H A DImathVec.cpp60 int axis = -1; local
65 if (axis != -1)
69 "to a principal axis");
71 axis = i;
74 v[axis] = (v[axis] > 0) ? 1 : -1;
83 int axis = -1; local
88 if (axis != -1)
92 "to a principal axis");
94 axis
106 int axis = -1; local
[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/
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/pdfium/third_party/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/skia/src/core/
H A DSkFontDescriptor.cpp64 SkAutoSTMalloc<4, SkFixed> axis; local
80 axis.reset(axisCount);
82 axis[i] = read_uint(stream);
102 index, axis, axisCount));
H A DSkFontDescriptor.h17 /** This takes ownership of 'stream'. Makes a copy of the data in 'axis'. */
18 SkFontData(SkStreamAsset* stream, int index, const SkFixed axis[], int axisCount) argument
22 fAxis[i] = axis[i];
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DDynamicTableModel.java114 * Figure out the size of a single cell across the specified axis.
116 * @param axis
121 Axis axis,
127 switch (axis) {
120 calculateCellSize(RectF tableRect, Axis axis, int numElementsInTable) argument
/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/eigen/Eigen/src/Eigen2Support/Geometry/
H A DAngleAxis.h18 * \brief Represents a 3D rotation as a rotation angle around an arbitrary 3D axis
70 /** Constructs and initialize the angle-axis rotation from an \a angle in radian
71 * and an \a axis which must be normalized. */
73 inline AngleAxis(Scalar angle, const MatrixBase<Derived>& axis) : m_axis(axis), m_angle(angle) {} argument
74 /** Constructs and initialize the angle-axis rotation from a quaternion \a q. */
76 /** Constructs and initialize the angle-axis rotation from a 3x3 rotation matrix. */
83 const Vector3& axis() const { return m_axis; } function in class:Eigen::AngleAxis
84 Vector3& axis() { return m_axis; } function in class:Eigen::AngleAxis
110 /** \returns the inverse rotation, i.e., an angle-axis wit
[all...]
/external/eigen/Eigen/src/Geometry/
H A DAngleAxis.h19 * \brief Represents a 3D rotation as a rotation angle around an arbitrary 3D axis
23 * \warning When setting up an AngleAxis object, the axis vector \b must \b be \b normalized.
73 /** Constructs and initialize the angle-axis rotation from an \a angle in radian
74 * and an \a axis which \b must \b be \b normalized.
76 * \warning If the \a axis vector is not normalized, then the angle-axis object
79 inline AngleAxis(const Scalar& angle, const MatrixBase<Derived>& axis) : m_axis(axis), m_angle(angle) {} argument
80 /** Constructs and initialize the angle-axis rotation from a quaternion \a q. */
82 /** Constructs and initialize the angle-axis rotatio
89 const Vector3& axis() const { return m_axis; } function in class:Eigen::AngleAxis
90 Vector3& axis() { return m_axis; } function in class:Eigen::AngleAxis
[all...]
/external/freetype/src/autofit/
H A Dafcjk.h99 AF_CJKAxisRec axis[AF_DIMENSION_MAX]; member in struct:AF_CJKMetricsRec_
H A Dafloader.c164 AF_AxisHints axis = &hints->axis[AF_DIMENSION_HORZ]; local
165 AF_Edge edge1 = axis->edges; /* leftmost edge */
167 axis->num_edges - 1; /* rightmost edge */
170 if ( axis->num_edges > 1 && AF_HINTS_DO_ADVANCE( hints ) )
/external/vulkan-validation-layers/demos/smoke/
H A DSimulation.h42 glm::vec3 axis; member in struct:Animation::Data
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/
H A DRotation.java152 /** Build a rotation from an axis and an angle.
154 * the effect of the rotation on vectors around the axis. That means
156 * the axis and &pi;/2 as the angle to this constructor, and then
169 * @param axis axis around which to rotate
171 * @exception ArithmeticException if the axis norm is zero
173 public Rotation(Vector3D axis, double angle) { argument
175 double norm = axis.getNorm();
184 q1 = coeff * axis.getX();
185 q2 = coeff * axis
[all...]
/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...]

Completed in 1005 milliseconds

1234