Searched refs:startLine (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java435 * @param startLine the first line of the range of modified lines
436 * @param endLine the last line of the range, possibly equal to startLine, lower
442 void updateBlocks(int startLine, int endLine, int newLineCount) { argument
451 if (mBlockEndLines[i] >= startLine) {
464 boolean createBlockBefore = startLine > (firstBlock == 0 ? 0 :
506 final int deltaLines = newLineCount - (endLine - startLine + 1);
521 mBlockEndLines[blockIndex] = startLine - 1;
527 mBlockEndLines[blockIndex] = startLine + newLineCount - 1;
H A DLayout.java281 int startLine = getLineForOffset(sp.getSpanStart(margin));
282 useFirstLineMargin = i < startLine + count;
/frameworks/base/core/tests/coretests/src/android/text/
H A DDynamicLayoutBlocksTest.java63 private void update(int startLine, int endLine, int newLineCount) { argument
66 dl.updateBlocks(startLine, endLine, newLineCount);

Completed in 80 milliseconds