Searched defs:getHeight (Results 76 - 100 of 104) sorted by relevance

12345

/frameworks/base/core/java/android/inputmethodservice/
H A DKeyboard.java701 public int getHeight() { method in class:Keyboard
740 mCellHeight = (getHeight() + GRID_HEIGHT - 1) / GRID_HEIGHT;
774 if (x >= 0 && x < getMinWidth() && y >= 0 && y < getHeight()) {
/frameworks/base/core/java/android/view/
H A DDisplay.java85 // to getHeight() and getWidth() to ensure that applications perceive
681 public int getHeight() { method in class:Display
1174 * applications when the mode is active (as reported by {@link Display#getHeight()} may
H A DThreadedRenderer.java600 int getHeight() { method in class:ThreadedRenderer
/frameworks/base/core/java/android/widget/
H A DListPopupWindow.java521 public int getHeight() { method in class:ListPopupWindow
1316 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
H A DPopupWindow.java1043 public int getHeight() { method in class:PopupWindow
1058 * @see #getHeight()
1583 final int anchorHeight = anchor.getHeight();
1853 distanceToBottom = bottomEdge - (anchorPos[1] + anchor.getHeight()) - yOffset;
1959 final Rect bounds = new Rect(0, 0, anchor.getWidth(), anchor.getHeight());
2406 && ((x < 0) || (x >= getWidth()) || (y < 0) || (y >= getHeight()))) {
/frameworks/base/core/java/com/android/internal/app/
H A DToolbarActionBar.java393 public int getHeight() { method in class:ToolbarActionBar
394 return mDecorToolbar.getHeight();
H A DWindowDecorActionBar.java645 public int getHeight() { method in class:WindowDecorActionBar
646 return mContainerView.getHeight();
770 float startingY = -mContainerView.getHeight();
786 mSplitView.setTranslationY(mSplitView.getHeight());
831 float endingY = -mContainerView.getHeight();
847 mSplitView.getHeight()));
861 final int height = getHeight();
/frameworks/base/core/java/com/android/internal/widget/
H A DToolbarWidgetWrapper.java683 public int getHeight() { method in class:ToolbarWidgetWrapper
684 return mToolbar.getHeight();
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowSurfaceController.java534 float getHeight() { method in class:WindowSurfaceController
/frameworks/rs/
H A DrsContext.h184 uint32_t getHeight() const {return mHeight;} function in class:android::renderscript::Context
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DActionBar.java784 public abstract int getHeight(); method in class:ActionBar
987 * current measured {@link #getHeight() height} (fully invisible).</p>
1000 * current measured {@link #getHeight() height} (fully invisible).</p>
H A DToolbarActionBar.java398 public int getHeight() { method in class:ToolbarActionBar
399 return mDecorToolbar.getHeight();
H A DWindowDecorActionBar.java667 public int getHeight() { method in class:WindowDecorActionBar
668 return mContainerView.getHeight();
795 float startingY = -mContainerView.getHeight();
844 float endingY = -mContainerView.getHeight();
868 final int height = getHeight();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java560 public int getHeight() { method in class:ListPopupWindow
1376 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
/frameworks/base/core/java/android/app/
H A DActivityOptions.java954 public int getHeight() { method in class:ActivityOptions
/frameworks/base/core/java/android/text/
H A DLayout.java754 public int getHeight() { method in class:Layout
765 public int getHeight(boolean cap) { method in class:Layout
766 return getHeight();
H A DStaticLayout.java1292 public int getHeight(boolean cap) { method in class:StaticLayout
1301 mMaxLineHeight : super.getHeight();
/frameworks/base/core/jni/
H A Dandroid_graphics_Canvas.cpp75 static jint getHeight(jlong canvasHandle) { function in namespace:android::CanvasJNI
586 {"nGetHeight","(J)I", (void*) CanvasJNI::getHeight},
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java274 reconfigure(width, getHeight(), getConfig());
306 reconfigure(getWidth(), getHeight(), config);
703 final int height = src.getHeight();
718 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
774 if (y + height > source.getHeight()) {
780 height == source.getHeight() && (m == null || m.isIdentity())) {
1317 public final int getHeight() { method in class:Bitmap
1319 Log.w(TAG, "Called getHeight() on a recycle()'d bitmap! This is undefined behavior!");
1337 return scaleFromDensity(getHeight(), mDensity, canvas.mDensity);
1353 return scaleFromDensity(getHeight(), mDensit
[all...]
H A DCanvas.java237 public int getHeight() { method in class:Canvas
1160 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1161 scale(dst.width() / picture.getWidth(), dst.height() / picture.getHeight());
1173 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1175 (float) dst.height() / picture.getHeight());
/frameworks/base/libs/hwui/
H A DRenderProperties.h517 int getHeight() const { function in class:android::uirenderer::RenderProperties
553 outRect->set(0, 0, getWidth(), getHeight());
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp1067 uint32_t ScreenshotClient::getHeight() const { function in class:android::ScreenshotClient
/frameworks/native/opengl/libagl/
H A Degl.cpp164 virtual EGLint getHeight() const = 0;
234 virtual EGLint getHeight() const { return height; } function in struct:android::egl_window_surface_v2_t
658 virtual EGLint getHeight() const { return nativePixmap.height; } function in struct:android::egl_pixmap_surface_t
728 virtual EGLint getHeight() const { return pbuffer.height; } function in struct:android::egl_pbuffer_surface_t
1654 *value = surface->getHeight();
1798 h = d->getHeight();
/frameworks/base/media/java/android/media/
H A DMediaCodec.java3510 public int getHeight() { method in class:MediaCodec.MediaImage
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java563 public int getHeight() { method in class:AssistStructure.WindowNode
1101 public int getHeight() { method in class:AssistStructure.ViewNode
1947 + " " + node.getWidth() + "x" + node.getHeight() + "]" + " " + node.getTitle());
1954 + " " + node.getWidth() + "x" + node.getHeight() + "]" + " " + node.getClassName());

Completed in 524 milliseconds

12345