Searched refs:mCharacterBounds (Results 1 – 1 of 1) sorted by relevance
160 private final float[] mCharacterBounds; field in TextBoundsInfo217 bounds.set(mCharacterBounds[offset], mCharacterBounds[offset + 1], in getCharacterBounds()218 mCharacterBounds[offset + 2], mCharacterBounds[offset + 3]); in getCharacterBounds()542 return (isRtl != isStart) ? mCharacterBounds[4 * offset] : mCharacterBounds[4 * offset + 2]; in getCursorHorizontalPosition()566 rectF.left = Math.min(rectF.left, mCharacterBounds[4 * offset]); in getBoundsForRange()567 rectF.top = Math.min(rectF.top, mCharacterBounds[4 * offset + 1]); in getBoundsForRange()568 rectF.right = Math.max(rectF.right, mCharacterBounds[4 * offset + 2]); in getBoundsForRange()569 rectF.bottom = Math.max(rectF.bottom, mCharacterBounds[4 * offset + 3]); in getBoundsForRange()899 dest.writeFloatArray(mCharacterBounds); in writeToParcel()916 mCharacterBounds = Objects.requireNonNull(source.createFloatArray()); in TextBoundsInfo()[all …]