Home
last modified time | relevance | path

Searched refs:endline (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
DDynamicLayout.java714 int endline = getLineForOffset(where + before); in reflow() local
716 endline = getLineCount(); in reflow()
717 int endv = getLineTop(endline); in reflow()
718 boolean islast = (endline == getLineCount()); in reflow()
765 mInts.deleteAt(startline, endline - startline); in reflow()
766 mObjects.deleteAt(startline, endline - startline); in reflow()
835 updateBlocks(startline, endline - 1, n); in reflow()
DLayout.java3087 final int endline = getLineForOffset(end); in getSelection() local
3090 int bottom = getLineBottom(endline, /* includeLineSpacing= */ false); in getSelection()
3092 if (startline == endline) { in getSelection()
3108 for (int i = startline + 1; i < endline; i++) { in getSelection()
3118 top = getLineTop(endline); in getSelection()
3119 bottom = getLineBottom(endline, /* includeLineSpacing= */ false); in getSelection()
3121 addSelection(endline, getLineStart(endline), end, top, bottom, consumer); in getSelection()
3123 if (getParagraphDirection(endline) == DIR_RIGHT_TO_LEFT) { in getSelection()
3124 consumer.accept(width, top, getLineRight(endline), bottom, in getSelection()
3127 consumer.accept(0, top, getLineLeft(endline), bottom, in getSelection()