OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mImageHeight
(Results
1 - 12
of
12
) sorted by null
/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
109
protected int
mImageHeight
= SIZE_UNKNOWN;
180
mImageHeight
= 0;
185
mImageHeight
= mModel.getImageHeight();
326
bottom = Math.min(
mImageHeight
, bottom);
343
distH =
mImageHeight
/ 2 - mCenterY;
345
distW =
mImageHeight
/ 2 - mCenterY;
446
Math.round(
mImageHeight
* mScale));
617
float scaleY = (float) mScreenNail.getHeight() /
mImageHeight
;
691
int bottomEdge = ((
mImageHeight
- mY) >> mTileLevel);
/development/samples/training/bitmapfun/BitmapFun/src/main/java/com/example/android/bitmapfun/util/
ImageResizer.java
39
protected int
mImageHeight
;
72
mImageHeight
= height;
96
mImageHeight
, getImageCache());
/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
);
/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]);
/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
;
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/
GlobalScreenshot.java
107
private final int
mImageHeight
;
131
mImageHeight
= data.image.getHeight();
134
final int shortSide = mImageWidth <
mImageHeight
? mImageWidth :
mImageHeight
;
143
(shortSide -
mImageHeight
) / 2);
214
values.put(MediaStore.Images.ImageColumns.HEIGHT,
mImageHeight
);
/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/Launcher3/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);
Completed in 501 milliseconds