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

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DRegularExpression.java2030 private void resetCommon(int nofclosures) { argument
2034 if (this.closureContexts == null || this.closureContexts.length != nofclosures) {
2035 this.closureContexts = new ClosureContext[nofclosures];
2037 for (int i = 0; i < nofclosures; i ++) {
2047 void reset(CharacterIterator target, int start, int limit, int nofclosures) { argument
2057 this.resetCommon(nofclosures);
2060 void reset(String target, int start, int limit, int nofclosures) { argument
2070 this.resetCommon(nofclosures);
2073 void reset(char[] target, int start, int limit, int nofclosures) { argument
2083 this.resetCommon(nofclosures);
[all...]

Completed in 35 milliseconds