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

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java498 int[] blockIndices = new int[blockEndLines.length];
500 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock);
504 blockIndices, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1);
506 mBlockIndices = blockIndices;
552 void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks) { argument
554 mBlockIndices = new int[blockIndices.length];
556 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length);
/frameworks/base/core/java/android/widget/
H A DEditor.java1681 int[] blockIndices = dynamicLayout.getBlockIndices();
1689 int blockIndex = blockIndices[i];
1693 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks,
1696 blockIndices[i] = blockIndex;
1763 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, argument
1769 if (blockIndices[j] == i) {
1814 int[] blockIndices = dynamicLayout.getBlockIndices();
1826 final int blockIndex = blockIndices[i];

Completed in 32 milliseconds