Home | History | Annotate | Download | only in patterns

Lines Matching refs:WILD

46   public static final String WILD = "*";
100 * @return The namespace to be tested for, or {@link #WILD}, or null.
110 * @param ns The namespace to be tested for, or {@link #WILD}, or null.
126 * @return the local name to be tested, or {@link #WILD}, or an empty string.
136 * @param name the local name to be tested, or {@link #WILD}, or an empty string.
295 * True if this test has a null namespace and a local name of {@link #WILD}.
326 else if (((m_namespace == WILD) || (m_namespace == null))
327 && (m_name == WILD))
329 else if ((m_namespace != WILD) && (m_name == WILD))
334 m_isTotallyWild = (m_namespace == null && m_name == WILD);
475 * the name t is wild and the name p is non-null, or the two
479 * @param t target string, which may be {@link #WILD}.
486 // boolean b = (p == t) || ((null != p) && ((t == WILD) || p.equals(t)));
488 return (p == t) || ((null != p) && ((t == WILD) || p.equals(t)));
497 * @param t target string, which may be {@link #WILD}.
507 ? ((t == WILD) || p.equals(t)) : null == t));