Searched defs:getHeight (Results 26 - 50 of 98) sorted by path

1234

/frameworks/base/core/java/com/android/internal/app/
H A DWindowDecorActionBar.java648 public int getHeight() { method in class:WindowDecorActionBar
649 return mContainerView.getHeight();
773 float startingY = -mContainerView.getHeight();
789 mSplitView.setTranslationY(mSplitView.getHeight());
834 float endingY = -mContainerView.getHeight();
850 mSplitView.getHeight()));
864 final int height = getHeight();
/frameworks/base/core/java/com/android/internal/widget/
H A DDecorToolbar.java101 int getHeight(); method in interface:DecorToolbar
H A DDrawableHolder.java134 canvas.translate(-0.5f*getWidth(), -0.5f*getHeight());
206 public int getHeight() { method in class:DrawableHolder
H A DToolbarWidgetWrapper.java683 public int getHeight() { method in class:ToolbarWidgetWrapper
684 return mToolbar.getHeight();
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp74 static jint getHeight(JNIEnv*, jobject, jlong canvasHandle) { function in namespace:android::CanvasJNI
581 {"native_getHeight","!(J)I", (void*) CanvasJNI::getHeight},
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java282 reconfigure(width, getHeight(), getConfig());
314 reconfigure(getWidth(), getHeight(), config);
659 final int height = src.getHeight();
681 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
736 if (y + height > source.getHeight()) {
742 height == source.getHeight() && (m == null || m.isIdentity())) {
1157 public final int getHeight() { method in class:Bitmap
1159 Log.w(TAG, "Called getHeight() on a recycle()'d bitmap! This is undefined behavior!");
1177 return scaleFromDensity(getHeight(), mDensity, canvas.mDensity);
1193 return scaleFromDensity(getHeight(), mDensit
[all...]
H A DBitmapRegionDecoder.java186 || rect.top >= getHeight())
202 public int getHeight() { method in class:BitmapRegionDecoder
204 checkRecycled("getHeight called on recycled region decoder");
212 * getWidth() or getHeight() is called.
H A DCanvas.java243 public int getHeight() { method in class:Canvas
1375 bottom = bitmap.getHeight();
1422 bottom = bitmap.getHeight();
1947 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1948 scale(dst.width() / picture.getWidth(), dst.height() / picture.getHeight());
1960 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1962 (float) dst.height() / picture.getHeight());
H A DLargeBitmap.java54 if (rect.left < 0 || rect.top < 0 || rect.right > getWidth() || rect.bottom > getHeight())
67 public int getHeight() { method in class:LargeBitmap
68 checkRecycled("getHeight called on recycled large bitmap");
75 * getWidth() or getHeight() is called.
H A DNinePatch.java235 public int getHeight() { method in class:NinePatch
236 return mBitmap.getHeight();
H A DPicture.java108 public int getHeight() { method in class:Picture
H A DYuvImage.java178 public int getHeight() { method in class:YuvImage
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java44 public final float getHeight() { method in class:Shape
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java310 public int getHeight() { method in class:PdfRenderer.Page
361 || destClip.bottom > destination.getHeight()) {
383 : destination.getHeight();
/frameworks/base/libs/hwui/
H A DAssetAtlas.h135 uint32_t getHeight() const { function in class:android::uirenderer::AssetAtlas
H A DCanvasState.h164 int getHeight() const { return mHeight; } function in class:android::uirenderer::CanvasState
H A DDeferredLayerUpdater.h51 int getHeight() { return mHeight; } function in class:android::uirenderer::DeferredLayerUpdater
H A DLayer.h100 const float height = layer.getHeight();
119 inline uint32_t getHeight() const { function in class:android::uirenderer::Layer
H A DPixelBuffer.h136 uint32_t getHeight() const { function in class:android::uirenderer::PixelBuffer
H A DRect.h124 inline float getHeight() const { function in class:android::uirenderer::Rect
H A DRenderBuffer.h111 uint32_t getHeight() const { function in struct:android::uirenderer::RenderBuffer
H A DRenderNode.h194 int getHeight() const { function in class:android::uirenderer::RenderNode
195 return properties().getHeight();
H A DRenderProperties.h515 int getHeight() const { function in class:android::uirenderer::RenderProperties
551 outRect->set(0, 0, getWidth(), getHeight());
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h98 inline uint16_t getHeight() const { function in class:android::uirenderer::CacheTexture
/frameworks/base/media/java/android/media/
H A DImage.java170 public abstract int getHeight(); method in class:Image
224 return new Rect(0, 0, getWidth(), getHeight());
241 if (!cropRect.intersect(0, 0, getWidth(), getHeight())) {

Completed in 4482 milliseconds

1234