Home
last modified time | relevance | path

Searched refs:lineHeight (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tests/WindowAnimationJank/src/android/windowanimationjank/
DFlowLayout.java45 int lineHeight = 0; in onMeasure() local
60 lineHeight = Math.max(lineHeight, child.getMeasuredHeight()); in onMeasure()
64 y += lineHeight; in onMeasure()
70 mLineHeight = lineHeight; in onMeasure()
73 height = y + lineHeight; in onMeasure()
75 if (y + lineHeight < height) { in onMeasure()
76 height = y + lineHeight; in onMeasure()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DKeyboardShortcutKeysLayout.java49 int lineHeight = 0; in onMeasure() local
67 lineHeight = Math.max(lineHeight, in onMeasure()
72 yPos += lineHeight; in onMeasure()
77 this.mLineHeight = lineHeight; in onMeasure()
80 height = yPos + lineHeight; in onMeasure()
82 if (yPos + lineHeight < height) { in onMeasure()
83 height = yPos + lineHeight; in onMeasure()
/frameworks/base/core/java/android/widget/
DSimpleMonthView.java622 final float lineHeight = mMonthPaint.ascent() + mMonthPaint.descent(); in drawMonth() local
623 final float y = (mMonthHeight - lineHeight) / 2f; in drawMonth()
/frameworks/base/media/java/android/media/
DClosedCaptionRenderer.java1471 int lineHeight = safeHeight / MAX_ROWS; in onMeasure() local
1473 lineHeight, MeasureSpec.EXACTLY); in onMeasure()