Searched refs:getHeight (Results 1 - 25 of 511) sorted by relevance

1234567891011>>

/packages/inputmethods/LatinIME/tools/dicttool/compat/com/android/inputmethod/keyboard/
H A DKey.java24 public final int getHeight() { return 0; } method in class:Key
/packages/apps/Camera2/src/com/android/camera/burst/
H A DBurstMediaItem.java35 public int getHeight(); method in interface:BurstMediaItem
/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
H A DTexture.java40 public int getHeight(); method in interface:Texture
H A DFadeInTexture.java30 super(texture.getWidth(), texture.getHeight(), texture.isOpaque());
H A DFadeOutTexture.java29 super(texture.getWidth(), texture.getHeight(), texture.isOpaque());
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
H A DTexture.java40 public int getHeight(); method in interface:Texture
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DForwardingImageProxy.java64 * @see {@link android.media.Image#getHeight}
67 public int getHeight() { method in class:ForwardingImageProxy
68 return mImpl.getHeight();
108 .add("height", getHeight())
123 otherImage.getHeight() == getHeight() &&
129 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
H A DAndroidImageProxy.java107 mHeight = mImage.getHeight();
163 * @see {@link android.media.Image#getHeight}
166 public int getHeight() { method in class:AndroidImageProxy
210 .add("height", getHeight())
225 otherImage.getHeight() == getHeight() &&
231 return Objects.hashCode(getFormat(), getWidth(), getHeight(), getTimestamp());
H A DImageProxy.java82 * @see {@link android.media.Image#getHeight}
84 public int getHeight(); method in interface:ImageProxy
H A DForwardingImageReader.java38 public int getHeight() { method in class:ForwardingImageReader
39 return mDelegate.getHeight();
/packages/apps/Gallery/src/com/android/camera/
H A DRotateBitmap.java61 int cy = mBitmap.getHeight() / 2;
64 matrix.postTranslate(getWidth() / 2, getHeight() / 2);
73 public int getHeight() { method in class:RotateBitmap
77 return mBitmap.getHeight();
83 return mBitmap.getHeight();
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DScreenNail.java24 public int getHeight(); method in interface:ScreenNail
H A DProgressSpinner.java42 mHeight = Math.max(mOuter.getHeight(), mInner.getHeight());
49 public int getHeight() { method in class:ProgressSpinner
75 mOuter.draw(canvas, -mOuter.getWidth() / 2, -mOuter.getHeight() / 2);
77 mInner.draw(canvas, -mInner.getWidth() / 2, -mInner.getHeight() / 2);
H A DBitmapScreenNail.java38 public int getHeight() { method in class:BitmapScreenNail
39 return mBitmapTexture.getHeight();
H A DSlideshowView.java69 mCurrentTexture.getWidth(), mCurrentTexture.getHeight(),
73 mCurrentTexture.getHeight(), mCurrentTexture.getWidth(),
105 -mPrevTexture.getHeight() / 2);
115 -mCurrentTexture.getHeight() / 2);
140 int viewHeight = getHeight();
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DCamera2PreviewSizeSelector.java45 float pictureAspectRatio = pictureSize.getWidth() / (float) pictureSize.getHeight();
60 int area1 = size1.getWidth() * size1.getHeight();
61 int area2 = size2.getWidth() * size2.getHeight();
/packages/apps/Camera2/src/com/android/camera/
H A DCaptureModuleUtil.java73 if (s.getHeight() <= MAX_ASPECT_HEIGHT) {
81 if (s.getHeight() <= MAX_ASPECT_HEIGHT) {
82 camera1Sizes.add(new Size(s.getWidth(), s.getHeight()));
96 if (s.getWidth() == optimal.getWidth() && s.getHeight() == optimal.getHeight()) {
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
H A DIconFactory.java48 int sourceHeight = sourceImage.getHeight();
75 int sourceHeight = sourceImage.getHeight();
77 int iconHeight = dest.getHeight();
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
H A DIconView.java111 int y = canvas.getHeight() - 2*mMargin;
182 getHeight() - mTextSize - 2*mMargin);
185 mBitmapBounds = new Rect(mMargin/2, mMargin, getWidth()/2, getHeight());
187 mBitmapBounds = new Rect(mMargin/2, mMargin, getWidth() - mMargin/2, getHeight());
206 m.setRectToRect(new RectF(0, 0, mBitmap.getWidth(), mBitmap.getHeight()),
210 float scaleHeight = mBitmapBounds.height() / (float) mBitmap.getHeight();
213 float dy = (mBitmapBounds.height() - (mBitmap.getHeight() * scale)) / 2f;
227 float start = getHeight() - 2 * mMargin - 2 * mTextSize;
228 float end = getHeight();
/packages/services/Car/car-support-lib/src/android/support/car/app/menu/
H A DUtils.java30 drawable.setBounds(0, 0, canvas.getWidth(), canvas.getHeight());
/packages/apps/DevCamera/src/com/android/devcamera/
H A DBitmapUtility.java44 int h = img.getHeight();
65 Bitmap b2 = Bitmap.createBitmap(b, 0, 0,b.getWidth(),b.getHeight(), mat, true);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFastBitmapDrawable.java39 mHeight = mBitmap.getHeight();
100 mHeight = mBitmap.getHeight();
/packages/apps/Launcher3/src/com/android/launcher3/widget/
H A DWidgetImageView.java78 mDstRectF.set(0, 0, getWidth(), scale * mBitmap.getHeight());
84 mBitmap.getHeight());
/packages/apps/ManagedProvisioning/tests/src/com/android/managedprovisioning/
H A DLogoUtilsTest.java49 assertEquals(15, newBitmap.getHeight());
63 assertEquals(8, newBitmap.getHeight());
75 assertEquals(8, newBitmap.getHeight());
85 assertEquals(32, newBitmap.getHeight());
93 assertEquals(10, newBitmap.getHeight());
139 assertEquals(b1.getHeight(), b2.getHeight());
141 for (int y = 0; y < b1.getHeight(); y++) {
/packages/apps/PackageInstaller/src/com/android/packageinstaller/permission/ui/wear/
H A DConfirmationViewHandler.java183 Log.d(TAG, " contentHeight: " + mContent.getHeight());
192 if (mContent.getPaddingBottom() != mButtonBarContainer.getHeight()) {
194 mContent.getPaddingRight(), mButtonBarContainer.getHeight());
196 Log.d(TAG, " set mContent.PaddingBottom: " + mButtonBarContainer.getHeight());
200 mButtonBarContainer.setTranslationY(mButtonBarContainer.getHeight());
264 final int screenHeight = mRoot.getHeight();
266 final int buttonBarHeight = mButtonBarContainer.getHeight();
267 final int contentHeight = mContent.getHeight() - buttonBarHeight;
299 final int contentHeight = mContent.getHeight() + topMargin;
300 final int screenHeight = mRoot.getHeight();
[all...]

Completed in 708 milliseconds

1234567891011>>