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

1 2

  /cts/tests/tests/media/src/android/media/cts/
YUVImage.java 29 private final int mImageHeight;
39 mImageHeight = imageHeight;
47 mImageWidth, mImageHeight, arrayWidth, 1,
54 mImageWidth / 2, mImageHeight / 2, arrayWidth, 2,
57 mImageWidth / 2, mImageHeight / 2, arrayWidth, 2,
64 mImageWidth / 2, mImageHeight / 2, arrayWidth / 2, 1,
67 mImageWidth / 2, mImageHeight / 2, arrayWidth / 2, 1,
84 return 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 37 protected int mImageHeight;
46 mImageHeight = 0;
57 mImageHeight = height;
65 mImageHeight = decoder.getHeight();
105 needClear = !new Rect(0, 0, mImageWidth, mImageHeight)
151 overlapRegion = new Rect(0, 0, mImageWidth, mImageHeight);
188 return mImageHeight;
TileImageView.java 108 protected int mImageHeight = SIZE_UNKNOWN;
179 mImageHeight = 0;
184 mImageHeight = mModel.getImageHeight();
325 bottom = Math.min(mImageHeight, bottom);
342 distH = mImageHeight / 2 - mCenterY;
344 distW = mImageHeight / 2 - mCenterY;
445 Math.round(mImageHeight * mScale));
616 float scaleY = (float) mScreenNail.getHeight() / mImageHeight;
690 int bottomEdge = ((mImageHeight - mY) >> mTileLevel);
  /packages/services/Car/car-lib/src/android/car/navigation/
CarNavigationInstrumentCluster.java 53 private int mImageHeight;
101 return mImageHeight;
115 that.mImageHeight,
136 this.mImageHeight = imageHeight;
150 dest.writeInt(mImageHeight);
158 mImageHeight = in.readInt();
169 "imageHeight: " + mImageHeight + ", " +
  /packages/services/Car/car-support-lib/src/android/support/car/navigation/
CarNavigationInstrumentCluster.java 51 private int mImageHeight;
98 return mImageHeight;
115 that.mImageHeight,
139 this.mImageHeight = imageHeight;
151 "imageHeight: " + mImageHeight + ", " +
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java 39 protected int mImageHeight;
72 mImageHeight = height;
96 mImageHeight, getImageCache());
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/util/
ImageResizer.java 39 protected int mImageHeight;
72 mImageHeight = height;
96 mImageHeight, getImageCache());
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/util/
ImageResizer.java 39 protected int mImageHeight;
72 mImageHeight = height;
96 mImageHeight, getImageCache());
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
ImageStitcher.java 47 private int mImageHeight;
81 mImageHeight = mSliceHeight * mYSlices;
83 outputFormat.setDimensions(mImageWidth, mImageHeight);
117 float outputHeight = (float) Math.min(mSliceHeight, mImageHeight - outputOffsetY);
125 ((float) outputOffsetY) / mImageHeight,
127 outputHeight / mImageHeight);
  /packages/apps/TV/src/com/android/tv/dvr/ui/
RecordingCardView.java 45 private final int mImageHeight;
74 mImageHeight = imageHeight;
131 ImageLoader.loadBitmap(getContext(), uri, mImageWidth, mImageHeight,
  /developers/build/prebuilts/gradle/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
MediaEffectsFragment.java 51 private int mImageHeight;
137 mImageHeight = bitmap.getHeight();
138 mTexRenderer.updateTextureSize(mImageWidth, mImageHeight);
274 mEffect.apply(mTextures[0], mImageWidth, mImageHeight, mTextures[1]);
  /developers/samples/android/media/MediaEffects/Application/src/main/java/com/example/android/mediaeffects/
MediaEffectsFragment.java 51 private int mImageHeight;
137 mImageHeight = bitmap.getHeight();
138 mTexRenderer.updateTextureSize(mImageWidth, mImageHeight);
274 mEffect.apply(mTextures[0], mImageWidth, mImageHeight, mTextures[1]);
  /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]);
  /development/samples/browseable/MediaEffects/src/com.example.android.mediaeffects/
MediaEffectsFragment.java 51 private int mImageHeight;
137 mImageHeight = bitmap.getHeight();
138 mTexRenderer.updateTextureSize(mImageWidth, mImageHeight);
274 mEffect.apply(mTextures[0], mImageWidth, mImageHeight, mTextures[1]);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
GradControl.java 50 int mImageHeight;
  /packages/apps/Gallery2/src/com/android/photos/drawables/
AutoThumbnailDrawable.java 56 private int mImageWidth, mImageHeight;
75 mImageHeight = height;
170 if (mBounds.isEmpty() || mImageWidth == 0 || mImageHeight == 0) {
174 int sampleSize = calculateSampleSizeLocked(mImageWidth, mImageHeight);
190 return (float) mImageWidth / (float) mImageHeight;
246 height = mImageHeight;
  /packages/apps/TV/src/com/android/tv/guide/
ProgramTableAdapter.java 97 private final int mImageHeight;
138 mImageHeight = res.getDimensionPixelSize(
453 program.prefetchPosterArt(itemView.getContext(), mImageWidth, mImageHeight);
537 program.loadPosterArt(context, mImageWidth, mImageHeight,
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java 117 private final int mImageHeight;
142 mImageHeight = data.image.getHeight();
156 matrix.setTranslate((previewWidth - mImageWidth) / 2, (previewHeight - mImageHeight) / 2);
163 float scale = (float) iconSize / Math.min(mImageWidth, mImageHeight);
167 (iconSize - (scale * mImageHeight)) / 2);
264 values.put(MediaStore.Images.ImageColumns.HEIGHT, mImageHeight);
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
TiledImageRenderer.java 106 protected int mImageHeight = SIZE_UNKNOWN;
208 int maxDim = Math.max(mImageWidth, mImageHeight);
222 mImageHeight = 0;
227 mImageHeight = mModel.getImageHeight();
383 bottom = Math.min(mImageHeight, bottom);
452 Math.round(mImageHeight * mScale));
625 float scaleY = (float) mPreview.getHeight() / mImageHeight;
704 int bottomEdge = ((mImageHeight - mY) >> mTileLevel);
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 106 protected int mImageHeight = SIZE_UNKNOWN;
208 int maxDim = Math.max(mImageWidth, mImageHeight);
222 mImageHeight = 0;
227 mImageHeight = mModel.getImageHeight();
383 bottom = Math.min(mImageHeight, bottom);
452 Math.round(mImageHeight * mScale));
625 float scaleY = (float) mPreview.getHeight() / mImageHeight;
704 int bottomEdge = ((mImageHeight - mY) >> mTileLevel);
  /packages/apps/WallpaperPicker/src/com/android/photos/views/
TiledImageRenderer.java 106 protected int mImageHeight = SIZE_UNKNOWN;
208 int maxDim = Math.max(mImageWidth, mImageHeight);
222 mImageHeight = 0;
227 mImageHeight = mModel.getImageHeight();
383 bottom = Math.min(mImageHeight, bottom);
452 Math.round(mImageHeight * mScale));
625 float scaleY = (float) mPreview.getHeight() / mImageHeight;
704 int bottomEdge = ((mImageHeight - mY) >> mTileLevel);
  /external/robolectric/v3/runtime/
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 1586 milliseconds

1 2