Home
last modified time | relevance | path

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

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
DImageStitcher.java47 private int mImageHeight; field in ImageStitcher
81 mImageHeight = mSliceHeight * mYSlices; in calcOutputFormatForInput()
83 outputFormat.setDimensions(mImageWidth, mImageHeight); in calcOutputFormatForInput()
117 float outputHeight = (float) Math.min(mSliceHeight, mImageHeight - outputOffsetY); in process()
125 ((float) outputOffsetY) / mImageHeight, in process()
127 outputHeight / mImageHeight); in process() local
/frameworks/base/tests/UiBench/src/com/android/test/uibench/leanback/
DCardPresenter.java30 private int mImageHeight = 0; field in CardPresenter
34 mImageHeight = height; in CardPresenter()
44 v.setMainImageDimensions(mImageWidth, mImageHeight); in onCreateViewHolder()
54 mImageWidth, mImageHeight); in onBindViewHolder() local
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
DTiledImageRenderer.java106 protected int mImageHeight = SIZE_UNKNOWN; field in TiledImageRenderer
208 int maxDim = Math.max(mImageWidth, mImageHeight); in calculateLevelCount()
222 mImageHeight = 0; in notifyModelInvalidated()
227 mImageHeight = mModel.getImageHeight(); in notifyModelInvalidated()
383 bottom = Math.min(mImageHeight, bottom); in getRange()
452 Math.round(mImageHeight * mScale)); in draw()
625 float scaleY = (float) mPreview.getHeight() / mImageHeight; in drawTile()
704 int bottomEdge = ((mImageHeight - mY) >> mTileLevel); in onGetBitmap()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
DGlobalScreenshot.java140 private final int mImageHeight; field in SaveImageInBackgroundTask
154 mImageHeight = data.image.getHeight(); in SaveImageInBackgroundTask()
166 matrix.setTranslate((previewWidth - mImageWidth) / 2, (previewHeight - mImageHeight) / 2); in SaveImageInBackgroundTask()
171 float scale = (float) iconSize / Math.min(mImageWidth, mImageHeight); in SaveImageInBackgroundTask()
174 (iconSize - (scale * mImageHeight)) / 2); in SaveImageInBackgroundTask()