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

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java488 int[] blockIndices = new int[newSize];
490 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock);
494 blockIndices, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1);
496 mBlockIndices = blockIndices;
533 void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks) { argument
535 mBlockIndices = new int[blockIndices.length];
537 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length);
/frameworks/base/core/java/android/widget/
H A DEditor.java1304 int[] blockIndices = dynamicLayout.getBlockIndices();
1311 int blockIndex = blockIndices[i];
1315 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks,
1318 blockIndices[i] = blockIndex;
1378 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, argument
1384 if (blockIndices[j] == i) {
1420 int[] blockIndices = dynamicLayout.getBlockIndices();
1432 final int blockIndex = blockIndices[i];

Completed in 37 milliseconds