Searched refs:blockEndLines (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java496 int[] blockEndLines = ArrayUtils.newUnpaddedIntArray(
498 int[] blockIndices = new int[blockEndLines.length];
499 System.arraycopy(mBlockEndLines, 0, blockEndLines, 0, firstBlock);
502 blockEndLines, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1);
505 mBlockEndLines = blockEndLines;
552 void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks) { argument
553 mBlockEndLines = new int[blockEndLines.length];
555 System.arraycopy(blockEndLines, 0, mBlockEndLines, 0, blockEndLines.length);
/frameworks/base/core/java/android/widget/
H A DEditor.java1680 int[] blockEndLines = dynamicLayout.getBlockEndLines();
1688 int blockEndLine = blockEndLines[i];
1813 int[] blockEndLines = dynamicLayout.getBlockEndLines();
1820 if (blockEndLines[i] >= firstLine) break;
1830 if (blockEndLines[i] >= lastLine) break;

Completed in 145 milliseconds