Searched defs:blockIndices (Results 1 - 2 of 2) sorted by last modified time

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java483 int[] blockIndices = new int[blockEndLines.length];
485 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock);
489 blockIndices, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1);
491 mBlockIndices = blockIndices;
537 void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks) { argument
539 mBlockIndices = new int[blockIndices.length];
541 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length);
/frameworks/base/core/java/android/widget/
H A DEditor.java1339 int[] blockIndices = dynamicLayout.getBlockIndices();
1347 int blockIndex = blockIndices[i];
1351 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks,
1354 blockIndices[i] = blockIndex;
1418 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, argument
1424 if (blockIndices[j] == i) {
1457 int[] blockIndices = dynamicLayout.getBlockIndices();
1469 final int blockIndex = blockIndices[i];

Completed in 1321 milliseconds