Searched refs:_axis (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java60 private int _axis; field in class:Step
80 _axis = axis;
104 return _axis;
111 _axis = axis;
183 return _nodeType == NodeTest.ANODE && _axis == Axis.SELF;
191 return _nodeType == NodeTest.ANODE && _axis == Axis.PARENT;
262 if (_axis == Axis.ATTRIBUTE && _nodeType != NodeTest.ATTRIBUTE
299 il.append(new PUSH(cpg, _axis));
317 _axis = Axis.ATTRIBUTE;
324 il.append(new PUSH(cpg, _axis));
[all...]
H A DStepPattern.java71 protected final int _axis; field in class:StepPattern
82 _axis = axis;
145 return _axis;
154 buffer.append(Axis.getNames(_axis))
210 step = new Step(_axis, _nodeType, _predicates);
212 step = new Step(_axis, _nodeType, null);
220 step = new Step(_axis, _nodeType, _predicates);
229 return _axis == Axis.CHILD ? Type.Element : Type.Attribute;
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DMultiDOM.java63 private final int _axis; field in class:MultiDOM.AxisIterator
70 _axis = axis;
98 _source = _adapters[dom].getAxisIterator(_axis);
99 } else if (_axis == Axis.CHILD) {
102 _source = _adapters[dom].getTypedAxisIterator(_axis, _type);
137 return Axis.isReverse(_axis);
153 final AxisIterator clone = new AxisIterator(_axis, _type);

Completed in 217 milliseconds