Home
last modified time | relevance | path

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

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/ntp/
H A DIncognitoDescriptionView.java40 private int mHeightDp; field in IncognitoDescriptionView
102 mHeightDp = getContext().getResources().getConfiguration().screenHeightDp; in onFinishInflate()
128 if (mWidthDp != config.screenWidthDp || mHeightDp != config.screenHeightDp) { in onMeasure()
130 mHeightDp = config.screenHeightDp; in onMeasure()
216 paddingVerticalDp = mHeightDp <= 320 ? 16 : 72; in adjustLayout()
246 (int) Math.ceil(mParagraphs[0].getTextSize() * (mHeightDp <= 600 ? 1 : 1.5)); in adjustLayout()
285 sizeDp = (mWidthDp <= 240 || mHeightDp <= 480) ? 48 : 72; in adjustIcon()
287 sizeDp = mHeightDp <= 480 ? 72 : 120; in adjustIcon()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/compositor/layouts/
H A DLayout.java83 private float mHeightDp; field in Layout
132 mHeightDp = -1; in Layout()
327 || Float.compare(mHeightDp, height) != 0 in sizeChanged()
334 mHeightDp = height; in sizeChanged()
517 return mHeightDp; in getHeight()