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.java1530 int[] blockIndices = dynamicLayout.getBlockIndices();
1538 int blockIndex = blockIndices[i];
1542 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks,
1545 blockIndices[i] = blockIndex;
1612 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, argument
1618 if (blockIndices[j] == i) {
1651 int[] blockIndices = dynamicLayout.getBlockIndices();
1663 final int blockIndex = blockIndices[i];

Completed in 243 milliseconds