Searched refs:measureLimit (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | TextLine.java | 1101 private float handleRun(int start, int measureLimit, in handleRun() argument 1105 if (measureLimit < start || measureLimit > limit) { in handleRun() 1106 throw new IndexOutOfBoundsException("measureLimit (" + measureLimit + ") is out of " in handleRun() 1111 if (start == measureLimit) { in handleRun() 1135 y, bottom, fmi, needWidth, measureLimit, null); in handleRun() 1144 for (int i = start, inext; i < measureLimit; i = inext) { in handleRun() 1150 int mlimit = Math.min(inext, measureLimit); in handleRun() 1171 bottom, fmi, needWidth || mlimit < measureLimit); in handleRun() 1210 top, y, bottom, fmi, needWidth || activeEnd < measureLimit, in handleRun() 1235 top, y, bottom, fmi, needWidth || activeEnd < measureLimit, in handleRun()
|