HomeSort by relevance Sort by last modified time
    Searched defs:mPageHeight (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/android/print/pdf/
PrintedPdfDocument.java 70 private final int mPageHeight;
89 mPageHeight = (int) (((float) mediaSize.getHeightMils() / MILS_PER_INCH)
103 mPageHeight - marginBottom);
130 .Builder(mPageWidth, mPageHeight, pageNumber)
151 return mPageHeight;
  /frameworks/base/graphics/java/android/graphics/pdf/
PdfDocument.java 122 pageInfo.mPageHeight, pageInfo.mContentRect.left, pageInfo.mContentRect.top,
269 private int mPageHeight;
295 return mPageHeight;
342 mPageInfo.mPageHeight = pageHeight;
357 || contentRect.bottom > mPageInfo.mPageHeight)) {
372 mPageInfo.mPageWidth, mPageInfo.mPageHeight);
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 72 private int mPageHeight;
99 mPageHeight = TestUtils.dpToPx(mActivity, PAGE_HEIGHT_DPI);
101 mScrollBottom = mItemHeight * ITEM_COUNT - mPageHeight;
559 assertEquals(mPageHeight, mScrollViewCustom.getScrollY(), TOLERANCE);
562 assertEquals(mPageHeight * 2, mScrollViewCustom.getScrollY(), TOLERANCE);
569 assertEquals(mScrollBottom - mPageHeight, mScrollViewCustom.getScrollY(), TOLERANCE);
572 assertEquals(mScrollBottom -mPageHeight * 2, mScrollViewCustom.getScrollY(), TOLERANCE);
657 () -> mScrollViewCustom.smoothScrollTo(mPageWidth, mPageHeight));
658 pollingCheckSmoothScrolling(0, 0, mScrollBottom, mPageHeight);
660 assertEquals(mPageHeight, mScrollViewCustom.getScrollY())
    [all...]

Completed in 129 milliseconds