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

1 2 3

  /external/chromium_org/third_party/skia/include/effects/
SkColorMatrix.h 25 enum Axis {
30 void setRotate(Axis, SkScalar degrees);
31 void setSinCos(Axis, SkScalar sine, SkScalar cosine);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /external/skia/include/effects/
SkColorMatrix.h 25 enum Axis {
30 void setRotate(Axis, SkScalar degrees);
31 void setSinCos(Axis, SkScalar sine, SkScalar cosine);
32 void preRotate(Axis, SkScalar degrees);
33 void postRotate(Axis, SkScalar degrees);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
WalkerFactory.java 24 import org.apache.xml.dtm.Axis;
310 return Axis.FOLLOWING;
312 return Axis.FOLLOWINGSIBLING;
314 return Axis.PRECEDING;
316 return Axis.PRECEDINGSIBLING;
318 return Axis.PARENT;
320 return Axis.NAMESPACE;
322 return Axis.ANCESTOR;
324 return Axis.ANCESTORORSELF;
326 return Axis.ATTRIBUTE
857 int axis = Axis.SELF; local
990 int axis, predicateAxis; local
    [all...]
ChildTestIterator.java 23 import org.apache.xml.dtm.Axis;
77 * @return The next node on the axis, or DTM.NULL.
127 m_traverser = m_cdtm.getAxisTraverser(Axis.CHILD);
150 * Returns the axis being iterated, if it is known.
152 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
157 return org.apache.xml.dtm.Axis.CHILD;
AttributeIterator.java 63 * Returns the axis being iterated, if it is known.
65 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
70 return org.apache.xml.dtm.Axis.ATTRIBUTE;
MatchPatternIterator.java 23 import org.apache.xml.dtm.Axis;
37 * filtered iteration over the tree, evaluating each node in a super axis
49 /** The traversal axis from where the nodes will be filtered. */
52 /** The DTM inner traversal class, that corresponds to the super axis. */
123 m_superAxis = Axis.ALL;
127 m_superAxis = Axis.DESCENDANTSFROMROOT;
134 m_superAxis = Axis.ALLFROMNODE;
138 m_superAxis = Axis.DESCENDANTORSELF;
143 m_superAxis = Axis.ALL;
147 System.out.println("axis: "+Axis.getNames(m_superAxis))
    [all...]
DescendantIterator.java 23 import org.apache.xml.dtm.Axis;
104 m_axis = Axis.DESCENDANTSORSELFFROMROOT;
106 m_axis = Axis.DESCENDANTSFROMROOT;
109 m_axis = Axis.DESCENDANTORSELF;
111 m_axis = Axis.DESCENDANT;
135 m_axis = Axis.DESCENDANTSORSELFFROMROOT;
345 * Returns the axis being iterated, if it is known.
347 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
359 /** The axis that we are traversing. *
    [all...]
ChildIterator.java 110 * Returns the axis being iterated, if it is known.
112 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
117 return org.apache.xml.dtm.Axis.CHILD;
FilterExprIteratorSimple.java 23 import org.apache.xml.dtm.Axis;
300 * Returns the axis being iterated, if it is known.
302 * @return Axis.CHILD, etc., or -1 if the axis is not known or is of multiple
310 return Axis.FILTEREDLIST;
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/input/lwjgl/
JInputJoyInput.java 12 import net.java.games.input.Component.Identifier.Axis;
24 private HashMap<Axis, Integer>[] axisIdsToIndices;
41 }else if (id instanceof Axis){
42 Axis axis = (Axis) id; local
43 if (axis == Axis.X){
45 }else if (axis == Axis.Y)
166 Axis axis = (Axis) id; local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
Axis.java 19 * $Id: Axis.java 468653 2006-10-28 07:07:05Z minchau $
30 public final class Axis
34 * 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
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
ColumnInfo.h 58 enum Axis { InlineAxis, BlockAxis };
60 Axis progressionAxis() const { return m_progressionAxis; }
61 void setProgressionAxis(Axis progressionAxis) { m_progressionAxis = progressionAxis; }
108 Axis m_progressionAxis;
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathStep.h 45 enum Axis {
79 Step(Axis, const NodeTest&, const Vector<Predicate*>& predicates = Vector<Predicate*>());
86 Axis axis() const { return m_axis; } function in class:WebCore::XPath::Step
97 Axis m_axis;
XPathParser.h 47 Step::Axis axis; member in struct:WebCore::XPath::Token
53 Token(int t, Step::Axis v): type(t), axis(v) { }
  /external/droiddriver/src/com/google/android/droiddriver/scroll/
SentinelScroller.java 27 import com.google.android.droiddriver.scroll.Direction.Axis;
42 private final Axis axis; field in class:SentinelScroller
50 * @param axis the axis this scroller can scroll
52 public SentinelScroller(int maxScrolls, long perScrollTimeoutMillis, Axis axis,
56 this.axis = axis;
62 * perScrollTimeoutMillis, vertical axis
    [all...]
Direction.java 30 public enum Axis {
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 23 import org.apache.xml.dtm.Axis;
41 public ContextMatchStepPattern(int axis, int paxis)
43 super(DTMFilter.SHOW_ALL, axis, paxis);
99 int axis = m_axis; local
101 boolean needToTraverseAttrs = WalkerFactory.isDownwardAxisOfMany(axis);
105 if((Axis.PRECEDING == axis) && iterRootIsAttr)
107 axis = Axis.PRECEDINGANDANCESTOR;
110 traverser = dtm.getAxisTraverser(axis);
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObjectFactory.java 23 import org.apache.xml.dtm.Axis;
109 DTMAxisIterator iter = dtm.getAxisIterator(Axis.SELF);
111 DTMIterator iterator = new OneStepIterator(iter, Axis.SELF);
125 DTMIterator iterator = new OneStepIterator(iter, Axis.SELF);
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseTraversers.java 95 * 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)
108 m_traversers = new DTMAxisTraverser[Axis.getNamesLength()];
113 traverser = m_traversers[axis]; // Share/reuse existing traverser
119 switch (axis) // Generate new traverser
121 case Axis.ANCESTOR :
124 case Axis.ANCESTORORSELF :
127 case Axis.ATTRIBUTE
    [all...]
DTMDefaultBaseIterators.java 89 * Get an iterator that can navigate over an XPath Axis, predicated by
94 * @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)
113 // iterator = new FilterIterator(getAxisIterator(axis),
118 switch (axis)
120 case Axis.SELF :
123 case Axis.CHILD :
126 case Axis.PARENT :
128 case Axis.ANCESTOR
    [all...]
  /external/chromium_org/content/browser/android/
overscroll_glow.h 80 enum Axis { AXIS_X, AXIS_Y };
91 void ReleaseAxis(Axis axis, base::TimeTicks current_time);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
KeyIterator.java 30 import org.apache.xml.dtm.Axis;
83 super(Axis.ALL);
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 28 import org.apache.xml.dtm.Axis;
851 pattern = new FunctionPattern(compileFunction(opPos), Axis.PARENT, Axis.CHILD);
861 Axis.PARENT, Axis.CHILD);
871 Axis.PARENT, Axis.ATTRIBUTE);
885 Axis.ANCESTOR, Axis.CHILD);
895 Axis.PARENT, Axis.CHILD)
    [all...]
  /external/chromium_org/third_party/skia/src/effects/
SkColorMatrix.cpp 32 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) {
37 this->setSinCos(axis, S, C);
40 void SkColorMatrix::setSinCos(Axis axis, SkScalar sine, SkScalar cosine) {
41 SkASSERT((unsigned)axis < 3);
48 const uint8_t* index = gRotateIndex + axis * 4;
57 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) {
59 tmp.setRotate(axis, degrees)
    [all...]
  /external/skia/src/effects/
SkColorMatrix.cpp 32 void SkColorMatrix::setRotate(Axis axis, SkScalar degrees) {
37 this->setSinCos(axis, S, C);
40 void SkColorMatrix::setSinCos(Axis axis, SkScalar sine, SkScalar cosine) {
41 SkASSERT((unsigned)axis < 3);
48 const uint8_t* index = gRotateIndex + axis * 4;
57 void SkColorMatrix::preRotate(Axis axis, SkScalar degrees) {
59 tmp.setRotate(axis, degrees)
    [all...]

Completed in 1107 milliseconds

1 2 3