Searched defs:imageHeight (Results 1 - 11 of 11) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/data/
H A DFilmstripItemUtils.java82 * @param imageHeight Image height.
91 int imageHeight, int widthBound, int heightBound, int orientation,
98 int dummy = imageHeight;
99 imageHeight = imageWidth;
106 int targetHeight = imageHeight;
90 loadImageThumbnailFromStream(InputStream stream, int imageWidth, int imageHeight, int widthBound, int heightBound, int orientation, int maximumPixels) argument
/packages/apps/Launcher3/src/com/android/launcher3/compat/
H A DAppWidgetManagerCompat.java90 int imageWidth, int imageHeight);
89 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageWidth, int imageHeight) argument
H A DAppWidgetManagerCompatV16.java94 int imageWidth, int imageHeight) {
93 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageWidth, int imageHeight) argument
H A DAppWidgetManagerCompatVL.java113 int imageWidth, int imageHeight) {
126 Math.min(imageWidth, imageHeight - badgeMinTop));
129 final int top = Math.max(imageHeight - badgeSize, badgeMinTop);
112 getBadgeBitmap(LauncherAppWidgetProviderInfo info, Bitmap bitmap, int imageWidth, int imageHeight) argument
/packages/services/Car/car-lib/src/android/car/navigation/
H A DCarNavigationInstrumentCluster.java73 int imageWidth, int imageHeight, int imageColorDepthBits) {
76 imageWidth, imageHeight, imageColorDepthBits);
121 int imageHeight,
126 this.mImageHeight = imageHeight;
159 "imageHeight: " + mImageHeight + ", " +
72 createCustomImageCluster(int minIntervalMs, int imageWidth, int imageHeight, int imageColorDepthBits) argument
117 CarNavigationInstrumentCluster( int minIntervalMs, @ClusterType int type, int imageWidth, int imageHeight, int imageColorDepthBits) argument
/packages/services/Car/car-support-lib/src/android/support/car/navigation/
H A DCarNavigationInstrumentCluster.java80 int imageWidth, int imageHeight, int imageColorDepthBits) {
83 imageWidth, imageHeight, imageColorDepthBits);
129 int imageHeight,
135 this.mImageHeight = imageHeight;
173 "imageHeight: " + mImageHeight + ", " +
79 createCustomImageCluster(int minIntervalMs, int imageWidth, int imageHeight, int imageColorDepthBits) argument
125 CarNavigationInstrumentCluster( int minIntervalMs, @ClusterType int type, int imageWidth, int imageHeight, int imageColorDepthBits) argument
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
H A DImageStraighten.java207 int imageHeight, int viewWidth, int viewHeight) {
208 tmp.set(0, 0, imageHeight, imageWidth);
217 tmp.set(0, 0, imageHeight, imageWidth);
218 iw = imageHeight;
221 tmp.set(0, 0, imageWidth, imageHeight);
223 ih = imageHeight;
232 imageHeight, viewWidth, viewHeight);
237 FilterCropRepresentation.findNormalizedCrop(mCrop, imageWidth, imageHeight);
252 int imageHeight = image.getHeight();
258 imageHeight, viewWidt
206 updateCurrentCrop(Matrix m, GeometryHolder h, RectF tmp, int imageWidth, int imageHeight, int viewWidth, int viewHeight) argument
[all...]
H A DImageShow.java492 private Rect computeImageBounds(int imageWidth, int imageHeight) { argument
493 float scale = GeometryMathUtils.scale(imageWidth, imageHeight,
497 float h = imageHeight * scale;
/packages/apps/Messaging/jni/
H A DGifTranscoder.cpp402 int imageHeight,
409 ASSERT(top + height <= imageHeight, "Rectangle is outside image bounds");
400 fillRect(ColorARGB* renderBuffer, int imageWidth, int imageHeight, int left, int top, int width, int height, ColorARGB color) argument
/packages/apps/Gallery/src/com/android/camera/
H A DGalleryPicker.java621 int imageWidth, int widthPadding, int imageHeight,
628 int yPos = (row * (imageHeight + heightPadding)) - offsetY;
644 int imageHeight = height;
650 imageHeight = (imageHeight - padding) / 2; // per row and column
705 imageHeight, true, Util.RECYCLE_INPUT);
708 Bitmap thumb = Bitmap.createBitmap(imageWidth, imageHeight,
714 mCellOutline.setBounds(0, 0, imageWidth, imageHeight);
717 placeImage(thumb, c, pdpaint, imageWidth, padding, imageHeight,
620 placeImage(Bitmap image, Canvas c, Paint paint, int imageWidth, int widthPadding, int imageHeight, int heightPadding, int offsetX, int offsetY, int pos) argument
/packages/apps/Camera2/src/com/android/camera/util/
H A DCameraUtil.java975 * @param imageHeight The original height.
983 public static Point resizeToFill(int imageWidth, int imageHeight, int imageRotation, argument
988 imageWidth = imageHeight;
989 imageHeight = savedWidth;
998 if (imageWidth != 0 && imageHeight != 0) {
999 if (imageWidth * boundHeight > boundWidth * imageHeight) {
1000 p.y = imageHeight * p.x / imageWidth;
1002 p.x = imageWidth * p.y / imageHeight;
1006 + imageWidth + "|" + imageHeight + "|" + boundWidth + "|"

Completed in 587 milliseconds