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

/frameworks/base/core/java/android/text/
H A DDynamicLayout.java387 // mBlockIndices and mBlockEndLines should have the same length
388 mBlockIndices = new int[mBlockEndLines.length];
389 for (int i = 0; i < mBlockEndLines.length; i++) {
402 if (mBlockEndLines == null) {
404 mBlockEndLines = new int[ArrayUtils.idealIntArraySize(1)];
405 mBlockEndLines[mNumberOfBlocks] = line;
410 final int previousBlockEndLine = mBlockEndLines[mNumberOfBlocks - 1];
412 if (mNumberOfBlocks == mBlockEndLines.length) {
415 System.arraycopy(mBlockEndLines, 0, blockEndLines, 0, mNumberOfBlocks);
416 mBlockEndLines
694 private int[] mBlockEndLines; field in class:DynamicLayout
[all...]

Completed in 60 milliseconds