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

/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java4654 int countIndex; // local count index in matcher locals field in class:Pattern.Loop
4657 Loop(int countIndex, int beginIndex) { argument
4658 this.countIndex = countIndex;
4664 int count = matcher.locals[countIndex];
4669 matcher.locals[countIndex] = count + 1;
4674 matcher.locals[countIndex] = count;
4682 matcher.locals[countIndex] = count + 1;
4687 matcher.locals[countIndex] = count;
4695 int save = matcher.locals[countIndex];
4725 LazyLoop(int countIndex, int beginIndex) argument
[all...]

Completed in 198 milliseconds