Searched defs:getHeight (Results 51 - 75 of 81) sorted by relevance

1234

/frameworks/base/core/java/android/app/
H A DActivityOptions.java615 public int getHeight() { method in class:ActivityOptions
H A DActionBar.java772 public abstract int getHeight(); method in class:ActionBar
972 * current measured {@link #getHeight() height} (fully invisible).</p>
985 * current measured {@link #getHeight() height} (fully invisible).</p>
/frameworks/base/core/java/android/view/
H A DDisplay.java75 // to getHeight() and getWidth() to ensure that applications perceive
539 public int getHeight() { method in class:Display
H A DThreadedRenderer.java227 int getHeight() { method in class:ThreadedRenderer
H A DGLES20Canvas.java135 public int getHeight() { method in class:GLES20Canvas
607 bottom = bitmap.getHeight();
628 bottom = bitmap.getHeight();
/frameworks/base/libs/hwui/
H A DLayer.h97 const float height = layer.getHeight();
116 inline uint32_t getHeight() const { function in class:android::uirenderer::Layer
H A DRenderProperties.h486 int getHeight() const { function in class:android::uirenderer::RenderProperties
518 outRect->set(0, 0, getWidth(), getHeight());
/frameworks/base/media/java/android/media/
H A DImageReader.java150 * found using {@link Image#getHeight}.</p>
154 public int getHeight() { method in class:ImageReader
587 public int getHeight() { method in class:ImageReader.SurfaceImage
H A DMediaCodec.java1719 public int getHeight() { method in class:MediaCodec.MediaImage
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/
H A DPageAdapter.java120 public int getHeight(); method in interface:PageAdapter.PreviewArea
386 final int availableHeight = mPreviewArea.getHeight();
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DExpandHelper.java153 public float getHeight() { method in class:ExpandHelper.ViewScaler
245 if (DEBUG) Log.d(TAG, " inside (" + v.getWidth() + ", " + v.getHeight() + ")");
246 boolean inside = (x > 0f && y > 0f && x < v.getWidth() & y < v.getHeight());
510 mOldHeight = mScaler.getHeight();
529 float currentHeight = mScaler.getHeight();
531 float h = mScaler.getHeight();
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp160 int DisplayDevice::getHeight() const { function in class:DisplayDevice
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWComposer.cpp480 uint32_t HWComposer::getHeight(int disp) const { function in class:android::HWComposer
/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java688 public int getHeight() { method in class:Keyboard
727 mCellHeight = (getHeight() + GRID_HEIGHT - 1) / GRID_HEIGHT;
761 if (x >= 0 && x < getMinWidth() && y >= 0 && y < getHeight()) {
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java782 public int getHeight() { method in class:PopupWindow
794 * @see #getHeight()
1176 final int anchorHeight = anchor.getHeight();
1234 p.y = root.getHeight() - mDrawingLocation[1] + yoff;
1329 final int distanceToBottom = bottomEdge - (anchorPos[1] + anchor.getHeight()) - yOffset;
1691 && ((x < 0) || (x >= getWidth()) || (y < 0) || (y >= getHeight()))) {
H A DListPopupWindow.java504 public int getHeight() { method in class:ListPopupWindow
1769 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java391 public int getHeight() { method in class:ToolbarActionBar
392 return mToolbar.getHeight();
H A DWindowDecorActionBar.java639 public int getHeight() { method in class:WindowDecorActionBar
640 return mContainerView.getHeight();
764 float startingY = -mContainerView.getHeight();
780 mSplitView.setTranslationY(mSplitView.getHeight());
825 float endingY = -mContainerView.getHeight();
841 mSplitView.getHeight()));
855 final int height = getHeight();
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp782 uint32_t ScreenshotClient::getHeight() const { function in class:android::ScreenshotClient
/frameworks/rs/
H A DrsContext.h188 uint32_t getHeight() const {return mHeight;} function in class:android::renderscript::Context
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java773 public abstract int getHeight(); method in class:ActionBar
975 * current measured {@link #getHeight() height} (fully invisible).</p>
988 * current measured {@link #getHeight() height} (fully invisible).</p>
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DToolbarActionBar.java407 public int getHeight() { method in class:ToolbarActionBar
408 return mToolbar.getHeight();
/frameworks/base/core/java/android/text/
H A DLayout.java569 public int getHeight() { method in class:Layout
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp64 static jint getHeight(JNIEnv*, jobject, jlong canvasHandle) { function in namespace:android::CanvasJNI
689 {"native_getHeight","(J)I", (void*) CanvasJNI::getHeight},
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java254 reconfigure(width, getHeight(), getConfig());
286 reconfigure(getWidth(), getHeight(), config);
597 final int height = src.getHeight();
619 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
674 if (y + height > source.getHeight()) {
680 height == source.getHeight() && (m == null || m.isIdentity())) {
1088 public final int getHeight() { method in class:Bitmap
1105 return scaleFromDensity(getHeight(), mDensity, canvas.mDensity);
1121 return scaleFromDensity(getHeight(), mDensity, metrics.densityDpi);
1143 return scaleFromDensity(getHeight(), mDensit
[all...]

Completed in 1580 milliseconds

1234