Searched defs:getHeight (Results 26 - 50 of 81) sorted by relevance

1234

/frameworks/base/libs/hwui/
H A DPixelBuffer.h143 uint32_t getHeight() const { function in class:android::uirenderer::PixelBuffer
H A DRect.h118 inline float getHeight() const { function in class:android::uirenderer::Rect
H A DRenderNode.h168 int getHeight() { function in class:android::uirenderer::RenderNode
169 return properties().getHeight();
/frameworks/native/include/ui/
H A DGraphicBuffer.h88 uint32_t getHeight() const { return height; } function in class:android::GraphicBuffer
H A DRect.h67 return (getWidth() >= 0) && (getHeight() >= 0);
72 return (getWidth() <= 0) || (getHeight() <= 0);
81 inline int32_t getHeight() const { function in class:android::Rect
169 inline int32_t height() const { return getHeight(); }
/frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
H A DRsYuv.java105 public int getHeight() { method in class:RsYuv
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h218 uint32_t getHeight() const { return mHeight; } function in class:android::Camera2Device::StreamAdapter
303 uint32_t getHeight() const { return mHeight; } function in class:android::Camera2Device::ReprocessStreamAdapter
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.cpp79 uint32_t Camera3Stream::getHeight() const { function in class:android::camera3::Camera3Stream
/frameworks/base/core/java/android/text/
H A DBoringLayout.java314 public int getHeight() { method in class:BoringLayout
/frameworks/base/core/java/android/view/
H A DGraphicBuffer.java108 public int getHeight() { method in class:GraphicBuffer
H A DHardwareRenderer.java276 abstract int getHeight(); method in class:HardwareRenderer
/frameworks/base/core/java/com/android/internal/widget/
H A DDrawableHolder.java134 canvas.translate(-0.5f*getWidth(), -0.5f*getHeight());
206 public int getHeight() { method in class:DrawableHolder
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/
H A DTargetDrawable.java205 public int getHeight() { method in class:TargetDrawable
216 canvas.translate(-0.5f * getWidth(), -0.5f * getHeight());
/frameworks/base/graphics/java/android/graphics/
H A DNinePatch.java231 public int getHeight() { method in class:NinePatch
232 return mBitmap.getHeight();
H A DPicture.java107 public int getHeight() { method in class:Picture
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfRenderer.java302 public int getHeight() { method in class:PdfRenderer.Page
353 || destClip.bottom > destination.getHeight()) {
375 : destination.getHeight();
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h99 inline uint16_t getHeight() const { function in class:android::uirenderer::CacheTexture
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DBasicTexture.java103 public int getHeight() { method in class:BasicTexture
138 canvas.drawTexture(this, x, y, getWidth(), getHeight());
H A DUploadedTexture.java138 int h = mBitmap.getHeight() + mBorder * 2;
159 public int getHeight() { method in class:UploadedTexture
216 int bHeight = bitmap.getHeight();
/frameworks/base/rs/java/android/renderscript/
H A DRenderScriptGL.java243 public int getHeight() { method in class:RenderScriptGL
/frameworks/ex/framesequence/src/android/support/rastermill/
H A DFrameSequence.java36 public int getHeight() { return mHeight; } method in class:FrameSequence
/frameworks/base/core/jni/android/graphics/
H A DBitmapRegionDecoder.cpp70 int getHeight() const { return fHeight; } function in class:SkBitmapRegionDecoder
261 return static_cast<jint>(brd->getHeight());
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DFrameFormat.java142 public int getHeight() { method in class:FrameFormat
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPrintPreviewController.java212 public int getHeight() { method in class:PrintPreviewController
213 return mEmbeddedContentContainer.getHeight();
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java48 int getHeight(); method in interface:SimpleBitmapRegionDecoder
86 public int getHeight() { method in class:SimpleBitmapRegionDecoderWrapper
87 return mDecoder.getHeight();
118 public int getHeight() { method in class:DumbBitmapRegionDecoder
119 return mBuffer.getHeight();
182 int height = mDecoder.getHeight();
385 mHeight = mDecoder.getHeight();
397 if (preview.getWidth() <= GL_SIZE_LIMIT && preview.getHeight() <= GL_SIZE_LIMIT) {
404 preview.getWidth(), preview.getHeight()));
509 float scale = (float) targetSize / (float) (Math.max(result.getWidth(), result.getHeight()));
[all...]

Completed in 598 milliseconds

1234