Searched refs:endPos (Results 1 – 4 of 4) sorted by relevance
127 final int endPos = startPos + length; in fill() local128 ensureCapacity(endPos); in fill()129 Arrays.fill(mArray, startPos, endPos, value); in fill()130 if (mLength < endPos) { in fill()131 mLength = endPos; in fill()
1911 int endPos = text.length() - NANP_MIN_DIGITS + 1; in findNanpPhoneNumbers() local1912 if (endPos < 0) { in findNanpPhoneNumbers()1920 while (startPos < endPos) { in findNanpPhoneNumbers()1922 while (Character.isWhitespace(text.charAt(startPos)) && startPos < endPos) { in findNanpPhoneNumbers()1925 if (startPos == endPos) { in findNanpPhoneNumbers()1937 while (!Character.isWhitespace(text.charAt(startPos)) && startPos < endPos) { in findNanpPhoneNumbers()1979 int endPos = text.length(); in findNanpMatchEnd() local1985 while (curPos <= endPos) { in findNanpMatchEnd()1987 if (curPos < endPos) { in findNanpMatchEnd()
103 private boolean fitInWidth(final int startPos, final int endPos, final int width) { in fitInWidth() argument104 for (int pos = startPos; pos < endPos; pos++) { in fitInWidth()111 private int calcurateMaxRowWidth(final int startPos, final int endPos) { in calcurateMaxRowWidth() argument117 while (pos < endPos && mRowNumbers[pos] == row) { in calcurateMaxRowWidth()
259 final int endPos = startPos + length; in testFill() local280 if (i >= startPos && i < endPos) { in testFill()