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

/openjdk7/jdk/src/share/classes/com/sun/jmx/mbeanserver/
H A DUtil.java154 @param pati the index in the pattern at which matching should begin.
179 int stri, final int strend, int pati, final int patend) {
181 // System.out.println("matching "+pat.substring(pati,patend)+
188 /* On each pass through this loop, we either advance pati,
189 or we backtrack pati and advance starstri. Since starstri
190 is only ever assigned from pati, the loop must terminate. */
192 if (pati < patend) {
193 final char patc = pat.charAt(pati);
199 pati++;
202 pati
178 wildmatch(final String str, final String pat, int stri, final int strend, int pati, final int patend) argument
[all...]

Completed in 21 milliseconds