Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DDynamicLayout.java860 int[] blockIndices = new int[blockEndLines.length]; in updateBlocks()
862 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock); in updateBlocks()
866 blockIndices, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1); in updateBlocks()
868 mBlockIndices = blockIndices; in updateBlocks()
936 public void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks, in setBlocksDataForTest() argument
939 mBlockIndices = new int[blockIndices.length]; in setBlocksDataForTest()
941 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length); in setBlocksDataForTest()
/frameworks/base/core/java/android/widget/
DEditor.java1977 int[] blockIndices = dynamicLayout.getBlockIndices(); in drawHardwareAccelerated() local
2002 final int blockIndex = blockIndices[i]; in drawHardwareAccelerated()
2015 blockIndices, i, numberOfBlocks, startIndexToFindAvailableRenderNode); in drawHardwareAccelerated()
2030 blockEndLines, blockIndices, block, numberOfBlocks, in drawHardwareAccelerated()
2045 int[] blockIndices, int blockInfoIndex, int numberOfBlocks, in drawHardwareAcceleratedInner() argument
2048 int blockIndex = blockIndices[blockInfoIndex]; in drawHardwareAcceleratedInner()
2052 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks, in drawHardwareAcceleratedInner()
2055 blockIndices[blockInfoIndex] = blockIndex; in drawHardwareAcceleratedInner()
2113 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, in getAvailableDisplayListIndex() argument
2119 if (blockIndices[j] == i) { in getAvailableDisplayListIndex()
[all …]