Searched refs:NodeType (Results 1 - 16 of 16) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/util/
H A DType.java50 public static final Type Node = new NodeType(NodeTest.ANODE);
51 public static final Type Root = new NodeType(NodeTest.ROOT);
52 public static final Type Element = new NodeType(NodeTest.ELEMENT);
53 public static final Type Attribute = new NodeType(NodeTest.ATTRIBUTE);
54 public static final Type Text = new NodeType(NodeTest.TEXT);
55 public static final Type Comment = new NodeType(NodeTest.COMMENT);
56 public static final Type Processing_Instruction = new NodeType(NodeTest.PI);
H A DNodeType.java21 * $Id: NodeType.java,v 1.2.4.1 2005/09/05 11:24:25 pvedula Exp $
48 public final class NodeType extends Type { class in inherits:Type
51 protected NodeType() { method in class:NodeType
55 protected NodeType(int type) { method in class:NodeType
68 return other instanceof NodeType;
H A DNodeSetType.java83 translateTo(classGen, methodGen, (NodeType) type);
201 NodeType type) {
H A DReferenceType.java88 translateTo(classGen, methodGen, (NodeType) type);
196 NodeType type) {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DEqualityExpr.java43 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
148 else if (tleft instanceof NodeType && tright == Type.String) {
151 else if (tleft == Type.String && tright instanceof NodeType) {
155 else if (tleft instanceof NodeType && tright instanceof NodeType) {
159 else if (tleft instanceof NodeType && tright instanceof NodeSetType) {
162 else if (tleft instanceof NodeSetType && tright instanceof NodeType) {
169 if (tleft instanceof NodeType) {
172 if (tright instanceof NodeType) {
H A DAbsoluteLocationPath.java36 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
78 if (ptype instanceof NodeType) { // promote to node-set
H A DFilteredAbsoluteLocationPath.java36 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
77 if (ptype instanceof NodeType) { // promote to node-set
H A DRelationalExpr.java38 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
90 return _left.getType() instanceof NodeType ||
91 _right.getType() instanceof NodeType;
157 if (tright instanceof NodeType) {
H A DCopyOf.java35 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
67 if (tselect instanceof NodeType ||
105 else if (tselect instanceof NodeType) {
H A DApplyTemplates.java37 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
96 if (_type instanceof NodeType || _type instanceof ReferenceType) {
H A DFilterParentPath.java38 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
89 else if (ftype instanceof NodeType) {
H A DForEach.java39 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
78 if (_type instanceof ReferenceType || _type instanceof NodeType) {
H A DVariable.java39 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
136 (_type instanceof NodeType) ||
H A DCastExpr.java36 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.NodeType;
177 if (tleft instanceof NodeType) {
/openjdk7/hotspot/src/share/vm/opto/
H A Descape.hpp133 const u1 _type; // NodeType
148 } NodeType; typedef in class:PointsToNode
168 PointsToNode(Compile *C, Node* n, EscapeState es, NodeType type):
238 NodeType node_type() const { return (NodeType)_type;}
H A Descape.cpp3185 NodeType nt = node_type();

Completed in 66 milliseconds