Home
last modified time | relevance | path

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

/frameworks/base/graphics/java/android/graphics/pdf/
DPdfDocument.java350 public Builder setContentRect(Rect contentRect) { in setContentRect() argument
351 if (contentRect != null && (contentRect.left < 0 in setContentRect()
352 || contentRect.top < 0 in setContentRect()
353 || contentRect.right > mPageInfo.mPageWidth in setContentRect()
354 || contentRect.bottom > mPageInfo.mPageHeight)) { in setContentRect()
357 mPageInfo.mContentRect = contentRect; in setContentRect()
/frameworks/base/core/jni/android/graphics/pdf/
DPdfDocument.cpp37 PageRecord(int width, int height, const SkRect& contentRect) in PageRecord()
42 mContentRect = contentRect; in PageRecord()
69 SkRect contentRect = SkRect::MakeLTRB( in startPage() local
71 PageRecord* page = new PageRecord(width, height, contentRect); in startPage()
76 SkRect::MakeWH(contentRect.width(), contentRect.height())); in startPage()
/frameworks/support/core-utils/kitkat/android/support/v4/print/
DPrintHelperKitkat.java359 RectF contentRect; in writeBitmap() local
361 contentRect = new RectF(page.getInfo().getContentRect()); in writeBitmap()
368 contentRect = new RectF(dummyPage.getInfo().getContentRect()); in writeBitmap()
376 contentRect, fittingMode); in writeBitmap()
382 matrix.postTranslate(contentRect.left, contentRect.top); in writeBitmap()
385 page.getCanvas().clipRect(contentRect); in writeBitmap()
/frameworks/base/services/core/java/com/android/server/wm/
DTaskStack.java1425 Rect contentRect, Rect postExclude) { in setTouchExcludeRegion() argument
1469 mTmpRect.intersect(contentRect); in setTouchExcludeRegion()