Searched defs:mHeight (Results 1 - 25 of 69) sorted by relevance

123

/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.h29 int mHeight; member in class:FrameBuffer
/packages/apps/Settings/src/com/android/settings/applications/
H A DSpacePreference.java33 private int mHeight; field in class:SpacePreference
51 mHeight = a.getDimensionPixelSize(0, 0);
56 mHeight = height;
63 LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, mHeight);
/packages/services/Car/evs/sampleDriver/
H A DGlWrapper.h53 unsigned getHeight() { return mHeight; };
64 unsigned mHeight = 0; member in class:GlWrapper
H A DVideoCapture.h35 __u32 getHeight() { return mHeight; };
59 __u32 mHeight = 0; member in class:VideoCapture
/packages/services/BuiltInPrintService/src/com/android/bips/jni/
H A DSizeD.java28 private final double mHeight; field in class:SizeD
34 mHeight = height;
53 return mHeight;
64 out.writeDouble(mHeight);
/packages/apps/Dialer/java/com/android/dialer/callcomposer/camera/
H A DImagePersistTask.java41 private int mHeight; field in class:ImagePersistTask
59 mHeight = height;
83 mCallback.onMediaReady(result.getResult(), "image/jpeg", mWidth, mHeight);
106 Assert.checkState(mHeight == bitmap.getWidth());
107 clippedWidth = (int) (mHeight * mHeightPercent);
111 Assert.checkState(mHeight == bitmap.getHeight());
113 clippedHeight = (int) (mHeight * mHeightPercent);
119 mHeight = clippedHeight;
/packages/apps/DocumentsUI/src/com/android/documentsui/
H A DDragShadowBuilder.java38 private final int mHeight; field in class:DragShadowBuilder
45 mHeight = context.getResources().getDimensionPixelSize(R.dimen.drag_shadow_height);
61 shadowSize.set(mWidth, mHeight);
62 shadowTouchPoint.set(mWidth, mHeight);
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DColorTexture.java26 private int mHeight; field in class:ColorTexture
31 mHeight = 1;
36 draw(canvas, x, y, mWidth, mHeight);
51 mHeight = height;
61 return mHeight;
H A DFadeTexture.java32 private final int mHeight; field in class:FadeTexture
38 mHeight = height;
46 draw(canvas, x, y, mWidth, mHeight);
61 return mHeight;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DProgressSpinner.java31 private final int mHeight; field in class:ProgressSpinner
42 mHeight = Math.max(mOuter.getHeight(), mInner.getHeight());
50 return mHeight;
73 canvas.translate(x + mWidth / 2, y + mHeight / 2);
H A DSlideshowView.java123 private final int mHeight; field in class:SlideshowView.SlideshowAnimation
130 mHeight = height;
133 MOVE_SPEED * mHeight * (random.nextFloat() - 0.5f));
143 viewWidth / mWidth, (float) viewHeight / mHeight);
H A DSurfaceTextureScreenNail.java38 private int mWidth, mHeight; field in class:SurfaceTextureScreenNail
47 mExtTexture.setSize(mWidth, mHeight);
49 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
87 mHeight = height;
92 mExtTexture.setSize(mWidth, mHeight);
93 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
104 return mHeight;
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFastBitmapDrawable.java31 private int mHeight; field in class:FastBitmapDrawable
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
83 return mHeight;
93 return mHeight;
100 mHeight = mBitmap.getHeight();
102 mWidth = mHeight = 0;
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
H A DImagePersistTask.java42 private int mHeight; field in class:ImagePersistTask
62 mHeight = height;
101 Assert.equals(mHeight, bitmap.getWidth());
102 clippedWidth = (int) (mHeight * mHeightPercent);
106 Assert.equals(mHeight, bitmap.getHeight());
108 clippedHeight = (int) (mHeight * mHeightPercent);
113 mHeight = clippedHeight;
166 mCallback.onMediaReady(mOutputUri, ContentType.IMAGE_JPEG, mWidth, mHeight);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DThumbnailLoadTask.java49 private final int mHeight; field in class:ThumbnailLoadTask
92 mHeight = height;
134 final int hDivider = Math.max(opts.outHeight / mHeight, 1);
138 opts.outWidth, opts.outHeight, mWidth, mHeight, opts.inSampleSize);
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidImageProxy.java91 private final int mHeight; field in class:AndroidImageProxy
107 mHeight = mImage.getHeight();
167 return mHeight;
/packages/apps/Camera2/src/com/android/camera/util/
H A DAspectRatio.java37 private final int mHeight; field in class:AspectRatio
45 mHeight = height;
68 return mHeight;
76 return (float) mWidth / (float) mHeight;
88 if (mHeight != that.mHeight)
98 return Objects.hashCode(mWidth, mHeight);
110 return of(mHeight, mWidth);
153 // this.mHeight other.mHeight
[all...]
/packages/apps/Car/Dialer/src/com/android/car/dialer/
H A DCallTypeIconsView.java41 private int mHeight; field in class:CallTypeIconsView
59 mHeight = 0;
68 mHeight = Math.max(mHeight, drawable.getIntrinsicHeight());
101 setMeasuredDimension(mWidth, mHeight);
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DDragHoverListener.java44 private final IntSupplier mHeight; field in class:DragHoverListener
71 mHeight = heightSupplier;
84 return mHeight.getAsInt();
170 float topBottomRegionHeight = mHeight.getAsInt()
174 boolean shouldScrollDown = mCurrentPosition.y > mHeight.getAsInt() - topBottomRegionHeight
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
H A DJPEGInputStream.java33 private int mHeight = 0; field in class:JPEGInputStream
64 return new Point(mWidth, mHeight);
177 mHeight = dimens.y;
H A DJPEGOutputStream.java27 private int mHeight = 0; field in class:JPEGOutputStream
61 mHeight = height;
91 int flag = setup(out, mWidth, mHeight, mFormat, mQuality);
/packages/apps/Gallery2/src/com/android/photos/
H A DBitmapRegionTileSource.java56 int mHeight; field in class:BitmapRegionTileSource
73 mHeight = mDecoder.getHeight();
93 mWidth, mHeight,
111 return mHeight;
161 mOverlapRegion.set(0, 0, mWidth, mHeight);
191 float scale = (float) targetSize / Math.max(mWidth, mHeight);
/packages/apps/TV/src/com/android/tv/menu/
H A DMenuRow.java31 private final int mHeight; field in class:MenuRow
45 mHeight = context.getResources().getDimensionPixelSize(heightResId);
73 return mHeight;
/packages/services/BuiltInPrintService/src/com/android/bips/render/
H A DPdfRenderService.java168 private final int mHeight; field in class:PdfRenderService.RenderThread
179 mHeight = height;
205 for (int startRow = mYOffset; startRow < mYOffset + mHeight; startRow +=
207 int stripeRows = Math.min(mRowsPerStripe, (mYOffset + mHeight) - startRow);
/packages/apps/Camera2/src/com/android/camera/
H A DPanoProgressBar.java45 private float mHeight; field in class:PanoProgressBar
104 mHeight = h;
105 mDrawBounds.set(0, 0, mWidth, mHeight);

Completed in 504 milliseconds

123