Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/widget/
H A DTextView.java8610 final int compoundPaddingTop = getCompoundPaddingTop(); in invalidateDrawable() local
8612 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop; in invalidateDrawable()
8615 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightLeft) / 2; in invalidateDrawable()
8618 final int compoundPaddingTop = getCompoundPaddingTop(); in invalidateDrawable() local
8620 final int vspace = mBottom - mTop - compoundPaddingBottom - compoundPaddingTop; in invalidateDrawable()
8623 scrollY += compoundPaddingTop + (vspace - drawables.mDrawableHeightRight) / 2; in invalidateDrawable()
8937 final int compoundPaddingTop = getCompoundPaddingTop(); in onDraw() local
8958 int vspace = bottom - top - compoundPaddingBottom - compoundPaddingTop; in onDraw()
8966 scrollY + compoundPaddingTop + (vspace - dr.mDrawableHeightLeft) / 2); in onDraw()
8977 scrollY + compoundPaddingTop + (vspace - dr.mDrawableHeightRight) / 2); in onDraw()
[all …]
H A DEditor.java935 final int compoundPaddingTop = mTextView.getCompoundPaddingTop(); in getErrorY() local
937 - mTextView.getCompoundPaddingBottom() - compoundPaddingTop; in getErrorY()
953 int icontop = compoundPaddingTop + (vspace - height) / 2; in getErrorY()