Searched refs:blockIndices (Results 1 – 2 of 2) sorted by relevance
/frameworks/base/core/java/android/text/ |
D | DynamicLayout.java | 860 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/ |
D | Editor.java | 1840 int[] blockIndices = dynamicLayout.getBlockIndices(); in drawHardwareAccelerated() local 1865 final int blockIndex = blockIndices[i]; in drawHardwareAccelerated() 1878 blockIndices, i, numberOfBlocks, startIndexToFindAvailableRenderNode); in drawHardwareAccelerated() 1893 blockEndLines, blockIndices, block, numberOfBlocks, in drawHardwareAccelerated() 1908 int[] blockIndices, int blockInfoIndex, int numberOfBlocks, in drawHardwareAcceleratedInner() argument 1911 int blockIndex = blockIndices[blockInfoIndex]; in drawHardwareAcceleratedInner() 1915 blockIndex = getAvailableDisplayListIndex(blockIndices, numberOfBlocks, in drawHardwareAcceleratedInner() 1918 blockIndices[blockInfoIndex] = blockIndex; in drawHardwareAcceleratedInner() 1976 private int getAvailableDisplayListIndex(int[] blockIndices, int numberOfBlocks, in getAvailableDisplayListIndex() argument 1982 if (blockIndices[j] == i) { in getAvailableDisplayListIndex() [all …]
|