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

/frameworks/base/core/java/android/text/
H A DTextLine.java1088 * @param measureLimit the offset to measure to, between start and limit inclusive
1101 private float handleRun(int start, int measureLimit, argument
1105 if (measureLimit < start || measureLimit > limit) {
1106 throw new IndexOutOfBoundsException("measureLimit (" + measureLimit + ") is out of "
1111 if (start == measureLimit) {
1135 y, bottom, fmi, needWidth, measureLimit, null);
1144 for (int i = start, inext; i < measureLimit; i = inext) {
1150 int mlimit = Math.min(inext, measureLimit);
[all...]

Completed in 112 milliseconds