Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/text/
DDynamicLayout.java1003 int[] blockIndices = new int[blockEndLines.length]; in updateBlocks()
1005 System.arraycopy(mBlockIndices, 0, blockIndices, 0, firstBlock); in updateBlocks()
1009 blockIndices, firstBlock + numAddedBlocks, mNumberOfBlocks - lastBlock - 1); in updateBlocks()
1011 mBlockIndices = blockIndices; in updateBlocks()
1079 public void setBlocksDataForTest(int[] blockEndLines, int[] blockIndices, int numberOfBlocks, in setBlocksDataForTest() argument
1082 mBlockIndices = new int[blockIndices.length]; in setBlocksDataForTest()
1084 System.arraycopy(blockIndices, 0, mBlockIndices, 0, blockIndices.length); in setBlocksDataForTest()
/frameworks/base/core/java/android/widget/
DEditor.java2193 int[] blockIndices = dynamicLayout.getBlockIndices(); in drawHardwareAccelerated() local
2218 final int blockIndex = blockIndices[i]; in drawHardwareAccelerated()
2231 blockEndLines, blockIndices, i, numberOfBlocks, in drawHardwareAccelerated()
2247 cursorOffsetVertical, blockEndLines, blockIndices, block, in drawHardwareAccelerated()
2267 int[] blockIndices, int blockInfoIndex, int numberOfBlocks, in drawHardwareAcceleratedInner() argument
2270 int blockIndex = blockIndices[blockInfoIndex]; in drawHardwareAcceleratedInner()
2274 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks, in drawHardwareAcceleratedInner()
2277 blockIndices[blockInfoIndex] = blockIndex; in drawHardwareAcceleratedInner()
2335 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, in getAvailableDisplayListIndex() argument
2341 if (blockIndices[j] == i) { in getAvailableDisplayListIndex()
[all …]