Searched defs:_nodeType (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DStep.java77 private int _nodeType; field in class:Step
81 _nodeType = nodeType;
118 return _nodeType;
183 return _nodeType == NodeTest.ANODE && _axis == Axis.SELF;
191 return _nodeType == NodeTest.ANODE && _axis == Axis.PARENT;
253 if (_nodeType >= DTM.NTYPES) {
256 name = (String)ni.elementAt(_nodeType-DTM.NTYPES);
262 if (_axis == Axis.ATTRIBUTE && _nodeType != NodeTest.ATTRIBUTE
263 && _nodeType != NodeTest.ANODE && !hasParentPattern()
271 il.append(new PUSH(cpg, _nodeType));
[all...]
H A DStepPattern.java72 protected final int _nodeType; field in class:StepPattern
83 _nodeType = nodeType;
100 return _nodeType;
133 switch(_nodeType) {
139 return (_nodeType >= NodeTest.GTYPE) ? 0.0 : -0.5;
157 ("epsilon{" + Integer.toString(_nodeType) + "}") :
158 Integer.toString(_nodeType));
210 step = new Step(_axis, _nodeType, _predicates);
212 step = new Step(_axis, _nodeType, null);
220 step = new Step(_axis, _nodeType, _predicate
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DNodeCounter.java42 protected int _nodeType = DOM.FIRST_TYPE - 1; field in class:NodeCounter
272 return _nodeType == _document.getExpandedTypeID(node);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DDTMDefaultBaseIterators.java250 // %REVIEW% We could opt to share _nodeType and setNodeType() as
349 private int _nodeType = -1; field in class:DTMDefaultBaseIterators.ParentIterator
388 _nodeType = type;
403 if (_nodeType >= DTM.NTYPES) {
404 if (_nodeType != getExpandedTypeID(_currentNode)) {
407 } else if (_nodeType != NULL) {
408 if (_nodeType != getNodeType(_currentNode)) {
429 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedChildrenIterator
439 _nodeType = nodeType;
478 int nodeType = _nodeType;
648 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedNamespaceIterator
750 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedRootIterator
915 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedFollowingSiblingIterator
1026 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedAttributeIterator
1179 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedPrecedingSiblingIterator
1410 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedPrecedingIterator
1550 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedFollowingIterator
1743 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedAncestorIterator
1929 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedDescendantIterator
2155 private final int _nodeType; field in class:DTMDefaultBaseIterators.TypedSingletonIterator
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM2.java132 private int _nodeType = DTM.NULL; field in class:SAX2DTM2.ParentIterator
175 _nodeType = type;
193 if (_nodeType == NULL) {
197 else if (_nodeType >= DTM.NTYPES) {
198 if (_nodeType == _exptype2(result)) {
204 if (_nodeType == _type2(result)) {
224 private final int _nodeType; field in class:SAX2DTM2.TypedChildrenIterator
234 _nodeType = nodeType;
274 final int nodeType = _nodeType;
318 final int nodeType = _nodeType;
354 private final int _nodeType; field in class:SAX2DTM2.TypedRootIterator
455 private final int _nodeType; field in class:SAX2DTM2.TypedFollowingSiblingIterator
556 private final int _nodeType; field in class:SAX2DTM2.TypedAttributeIterator
709 private final int _nodeType; field in class:SAX2DTM2.TypedPrecedingSiblingIterator
965 private final int _nodeType; field in class:SAX2DTM2.TypedPrecedingIterator
1150 private final int _nodeType; field in class:SAX2DTM2.TypedFollowingIterator
1395 private final int _nodeType; field in class:SAX2DTM2.TypedAncestorIterator
1642 private final int _nodeType; field in class:SAX2DTM2.TypedDescendantIterator
1731 private final int _nodeType; field in class:SAX2DTM2.TypedSingletonIterator
[all...]

Completed in 36 milliseconds