Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DDynamicLayout.java573 int startline = getLineForOffset(where); in reflow() local
574 int startv = getLineTop(startline); in reflow()
622 mInts.deleteAt(startline, endline - startline); in reflow()
623 mObjects.deleteAt(startline, endline - startline); in reflow()
630 if (mIncludePad && startline == 0) { in reflow()
641 mInts.adjustValuesBelow(startline, START, after - before); in reflow()
642 mInts.adjustValuesBelow(startline, TOP, startv - endv + ht); in reflow()
688 mInts.insertAt(startline + i, ints); in reflow()
689 mObjects.insertAt(startline + i, objects); in reflow()
692 updateBlocks(startline, endline - 1, n); in reflow()
DLayout.java2009 final int startline = getLineForOffset(start); in getSelection() local
2012 int top = getLineTop(startline); in getSelection()
2015 if (startline == endline) { in getSelection()
2016 addSelection(startline, start, end, top, bottom, consumer); in getSelection()
2020 addSelection(startline, start, getLineEnd(startline), in getSelection()
2021 top, getLineBottom(startline), consumer); in getSelection()
2023 if (getParagraphDirection(startline) == DIR_RIGHT_TO_LEFT) { in getSelection()
2024 consumer.accept(getLineLeft(startline), top, 0, getLineBottom(startline), in getSelection()
2027 consumer.accept(getLineRight(startline), top, width, getLineBottom(startline), in getSelection()
2031 for (int i = startline + 1; i < endline; i++) { in getSelection()