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

  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageResizer.java 35 protected int mImageHeight;
68 mImageHeight = height;
92 mContext.getResources(), resId, mImageWidth, mImageHeight);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
MtpImage.java 48 private final int mImageHeight;
62 mImageHeight = objInfo.getImagePixHeight();
155 details.addDetail(MediaDetails.INDEX_HEIGHT, mImageHeight);
167 return mImageHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ImageStitcher.java 51 private int mImageHeight;
85 mImageHeight = mSliceHeight * mYSlices;
87 outputFormat.setDimensions(mImageWidth, mImageHeight);
121 float outputHeight = (float) Math.min(mSliceHeight, mImageHeight - outputOffsetY);
129 ((float) outputOffsetY) / mImageHeight,
131 outputHeight / mImageHeight);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapTileProvider.java 33 private final int mImageHeight;
39 mImageHeight = bitmap.getHeight();
60 return mImageHeight;
TileImageViewAdapter.java 34 protected int mImageHeight;
46 mImageHeight = regionDecoder.getHeight();
53 mImageHeight = 0;
62 mImageHeight = height;
72 mImageHeight = height;
88 mImageHeight = decoder.getHeight();
125 needClear = !new Rect(0, 0, mImageWidth, mImageHeight)
168 return mImageHeight;
CropView.java 92 private int mImageHeight = SIZE_UNKNOWN;
145 if (mImageHeight != SIZE_UNKNOWN) {
156 int inverseY = mImageHeight - centerY;
184 RectF result = new RectF(rect.left * mImageWidth, rect.top * mImageHeight,
185 rect.right * mImageWidth, rect.bottom * mImageHeight);
194 return mImageHeight;
299 mCurrentY = mImageHeight / 2;
302 (float) getHeight() / mImageHeight));
338 + mCurrentY) / mImageHeight, 0, 1);
349 offsetY + (input.top * mImageHeight - y) * s
    [all...]
TileImageView.java 110 protected int mImageHeight = SIZE_UNKNOWN;
168 mImageHeight = 0;
173 mImageHeight = mModel.getImageHeight();
313 bottom = Math.min(mImageHeight, bottom);
330 distH = mImageHeight / 2 - mCenterY;
332 distW = mImageHeight / 2 - mCenterY;
434 Math.round(mImageHeight * mScale));
601 float scaleY = (float) mScreenNail.getHeight() / mImageHeight;
678 int bottomEdge = ((mImageHeight - mY) >> mTileLevel) + TILE_BORDER;
  /development/samples/HelloEffects/src/com/example/android/mediafx/
HelloEffects.java 47 private int mImageHeight;
78 mImageHeight = bitmap.getHeight();
79 mTexRenderer.updateTextureSize(mImageWidth, mImageHeight);
241 mEffect.apply(mTextures[0], mImageWidth, mImageHeight, mTextures[1]);

Completed in 670 milliseconds