Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DDynamicLayout.java576 int endline = getLineForOffset(where + before); in reflow() local
578 endline = getLineCount(); in reflow()
579 int endv = getLineTop(endline); in reflow()
580 boolean islast = (endline == getLineCount()); in reflow()
622 mInts.deleteAt(startline, endline - startline); in reflow()
623 mObjects.deleteAt(startline, endline - startline); in reflow()
692 updateBlocks(startline, endline - 1, n); in reflow()
DLayout.java2010 final int endline = getLineForOffset(end); in getSelection() local
2013 int bottom = getLineBottomWithoutSpacing(endline); in getSelection()
2015 if (startline == endline) { in getSelection()
2031 for (int i = startline + 1; i < endline; i++) { in getSelection()
2041 top = getLineTop(endline); in getSelection()
2042 bottom = getLineBottomWithoutSpacing(endline); in getSelection()
2044 addSelection(endline, getLineStart(endline), end, top, bottom, consumer); in getSelection()
2046 if (getParagraphDirection(endline) == DIR_RIGHT_TO_LEFT) { in getSelection()
2047 consumer.accept(width, top, getLineRight(endline), bottom, in getSelection()
2050 consumer.accept(0, top, getLineLeft(endline), bottom, in getSelection()