Searched defs:startLine (Results 1 - 2 of 2) sorted by relevance

/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);
/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 :
505 final int deltaLines = newLineCount - (endLine - startLine + 1);
512 mBlockEndLines[blockIndex] = startLine - 1;
518 mBlockEndLines[blockIndex] = startLine + newLineCount - 1;

Completed in 93 milliseconds