Searched refs:measureLimit (Results 1 – 1 of 1) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | TextLine.java | 1081 private float handleRun(int start, int measureLimit, in handleRun() argument 1085 if (measureLimit < start || measureLimit > limit) { in handleRun() 1086 throw new IndexOutOfBoundsException("measureLimit (" + measureLimit + ") is out of " in handleRun() 1091 if (start == measureLimit) { in handleRun() 1116 y, bottom, fmi, needWidth, measureLimit, null); in handleRun() 1125 for (int i = start, inext; i < measureLimit; i = inext) { in handleRun() 1131 int mlimit = Math.min(inext, measureLimit); in handleRun() 1156 bottom, fmi, needWidth || mlimit < measureLimit); in handleRun() 1197 top, y, bottom, fmi, needWidth || activeEnd < measureLimit, in handleRun() 1224 top, y, bottom, fmi, needWidth || activeEnd < measureLimit, in handleRun()
|