Searched refs:WILD (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/patterns/
H A DNodeTest.java48 public static final String WILD = "*"; field in class:NodeTest
102 * @return The namespace to be tested for, or {@link #WILD}, or null.
112 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
128 * @return the local name to be tested, or {@link #WILD}, or an empty string.
138 * @param name the local name to be tested, or {@link #WILD}, or an empty string.
297 * True if this test has a null namespace and a local name of {@link #WILD}.
328 else if (((m_namespace == WILD) || (m_namespace == null))
329 && (m_name == WILD))
331 else if ((m_namespace != WILD) && (m_name == WILD))
[all...]
H A DStepPattern.java118 if (this.WILD == m_name)
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DDescendantIterator.java275 || NodeTest.WILD.equals(localName)
276 || NodeTest.WILD.equals(namespace))
316 || localName == NodeTest.WILD
317 || namespace == NodeTest.WILD)
H A DWalkerFactory.java681 // ? namespace.equals(NodeTest.WILD) : false;
683 // boolean isWild = (null != localname) ? localname.equals(NodeTest.WILD) : false;
907 pat.setLocalName(NodeTest.WILD);
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/compiler/
H A DOpMap.java391 * @return The step's namespace, NodeTest.WILD, or null for null namespace.
406 return NodeTest.WILD;
452 return NodeTest.WILD;

Completed in 38 milliseconds