Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/java/android/widget/
H A DTextView.java11380 if (ht < vspace) { in bringTextIntoView()
11384 scrolly = ht - vspace; in bringTextIntoView()
11488 if (vslack > vspace / 4) { in bringPointIntoView()
11489 vslack = vspace / 4; in bringPointIntoView()
11501 if (bottom - vs > vspace - vslack) { in bringPointIntoView()
11502 vs = bottom - (vspace - vslack); in bringPointIntoView()
11504 if (ht - vs < vspace) { in bringPointIntoView()
11505 vs = ht - vspace; in bringPointIntoView()
11648 if (vslack > vspace / 4) { in moveCursorToVisibleOffset()
11649 vslack = vspace / 4; in moveCursorToVisibleOffset()
[all …]
H A DEditor.java936 int vspace = mTextView.getBottom() - mTextView.getTop() in getErrorY() local
953 int icontop = compoundPaddingTop + (vspace - height) / 2; in getErrorY()