Home
last modified time | relevance | path

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

/aosp12/build/make/tools/droiddoc/templates-pdk/assets/design/
H A Ddefault.css185 .vspace.size-1 {
188 .vspace.size-2 {
191 .vspace.size-3 {
194 .vspace.size-4 {
197 .vspace.size-5 {
200 .vspace.size-6 {
203 .vspace.size-7 {
206 .vspace.size-8 {
209 .vspace.size-9 {
212 .vspace.size-10 {
[all …]
/aosp12/frameworks/base/core/java/android/widget/
H A DTextView.java9895 if (ht < vspace) { in bringTextIntoView()
9899 scrolly = ht - vspace; in bringTextIntoView()
9981 if (vslack > vspace / 4) { in bringPointIntoView()
9982 vslack = vspace / 4; in bringPointIntoView()
9994 if (bottom - vs > vspace - vslack) { in bringPointIntoView()
9995 vs = bottom - (vspace - vslack); in bringPointIntoView()
9997 if (ht - vs < vspace) { in bringPointIntoView()
9998 vs = ht - vspace; in bringPointIntoView()
10141 if (vslack > vspace / 4) { in moveCursorToVisibleOffset()
10142 vslack = vspace / 4; in moveCursorToVisibleOffset()
[all …]
H A DEditor.java876 int vspace = mTextView.getBottom() - mTextView.getTop() in getErrorY() local
893 int icontop = compoundPaddingTop + (vspace - height) / 2; in getErrorY()