Lines Matching defs:temp
979 private transient int[] temp;
1507 String[] temp = new String[length];
1535 temp[index++] = prefix + subResult[y];
1539 result[x] = temp[x];
1568 * Preprocess any \Q...\E sequences in `temp', meta-quoting them.
1575 if (temp[i] != '\\')
1577 else if (temp[i + 1] != 'Q')
1587 System.arraycopy(temp, 0, newtemp, 0, j);
1591 int c = temp[i++];
1598 if (temp[i] == 'E') {
1606 if (temp[i] == 'Q') {
1612 newtemp[j++] = temp[i++];
1618 temp = Arrays.copyOf(newtemp, j + 2); // double zero termination
1636 temp = new int[patternLength + 2];
1646 temp[count++] = c;
1661 matchRoot = newSlice(temp, patternLength, hasSupplementary);
1689 temp = null;
1778 int testChar = temp[cursor++];
1790 temp[patternLength] = c;
1797 int ch = temp[cursor];
1807 int ch = temp[cursor++];
1818 int ch = temp[cursor++];
1826 int ch = temp[++cursor];
1837 int ch = temp[++cursor];
1847 ch = temp[++cursor];
1861 ch = temp[cursor++];
1872 int ch = temp[cursor++];
1874 ch = temp[cursor++];
1882 int ch = temp[++cursor];
1884 ch = temp[++cursor];
1907 int ch = temp[i+1];
1933 if (isSupplementary(temp[i]))
2438 if (temp[cursor-1] != '[')
2586 int endRange = temp[cursor+1];
2628 int c = temp[cursor];
2632 name = new String(temp, cursor, 1);
2646 name = new String(temp, i, j-i-1);
2895 GroupTail temp = (GroupTail) tail;
2903 int temp = ((GroupHead) head).localIndex;
2906 loop = new Loop(this.localCount, temp);
2908 loop = new LazyLoop(this.localCount, temp);
3068 ch = temp[cursor+1];
4221 int temp = info.minLength * cmin + minL;
4222 if (temp < minL) {
4223 temp = 0xFFFFFFF; // arbitrary large number
4225 info.minLength = temp;
4228 temp = info.maxLength * cmax + maxL;
4229 info.maxLength = temp;
4230 if (temp < maxL) {
4430 int temp = info.minLength * cmin + minL;
4431 if (temp < minL) {
4432 temp = 0xFFFFFFF; // Arbitrary large number
4434 info.minLength = temp;
4437 temp = info.maxLength * cmax + maxL;
4438 info.maxLength = temp;
4439 if (temp < maxL) {