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

1234

/frameworks/native/opengl/libagl/
H A Degl.cpp162 virtual EGLint getHeight() const = 0;
232 virtual EGLint getHeight() const { return height; } function in struct:android::egl_window_surface_v2_t
654 virtual EGLint getHeight() const { return nativePixmap.height; } function in struct:android::egl_pixmap_surface_t
717 virtual EGLint getHeight() const { return pbuffer.height; } function in struct:android::egl_pbuffer_surface_t
1613 *value = surface->getHeight();
1757 h = d->getHeight();
/frameworks/support/v7/appcompat/src/android/support/v7/internal/app/
H A DWindowDecorActionBar.java649 public int getHeight() { method in class:WindowDecorActionBar
650 return mContainerView.getHeight();
775 float startingY = -mContainerView.getHeight();
791 ViewCompat.setTranslationY(mSplitView, mSplitView.getHeight());
836 float endingY = -mContainerView.getHeight();
850 anim.play(ViewCompat.animate(mSplitView).translationY(mSplitView.getHeight()));
864 final int height = getHeight();
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DListPopupWindow.java507 public int getHeight() { method in class:ListPopupWindow
1727 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
/frameworks/base/graphics/java/android/graphics/
H A DCanvas.java276 public int getHeight() { method in class:Canvas
1319 bottom = bitmap.getHeight();
1366 bottom = bitmap.getHeight();
1859 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1860 scale(dst.width() / picture.getWidth(), dst.height() / picture.getHeight());
1872 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1874 (float) dst.height() / picture.getHeight());
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java933 top + shadowingView.getHeight());
1176 mTopGlow.onPull(-overscrollY / (float) getHeight());
1179 mBottomGlow.onPull(overscrollY / (float) getHeight());
1317 mTempRect.set(0, 0, focused.getWidth(), focused.getHeight());
2104 newTop + disappearingItemView.getHeight());
2193 c.translate(-getHeight() + padding, 0);
2218 c.translate(-getWidth() + getPaddingRight(), -getHeight() + getPaddingBottom());
2220 c.translate(-getWidth(), -getHeight());
2734 top + shadowingView.getHeight());
2859 final int containerSize = horizontal ? getWidth() : getHeight();
5153 public int getHeight() { method in class:RecyclerView.LayoutManager
[all...]
/frameworks/base/core/java/android/view/
H A DView.java357 * {@link #getWidth()} and {@link #getHeight()}.
5802 bounds.set(0, 0, getWidth(), getHeight());
9898 public final int getHeight() { method in class:View
9905 * getWidth(), and getHeight(). These bounds do not account for any
9958 * {@link #getHeight()} to see how wide a view is after layout.
11148 tmpRect.set(0, 0, getWidth(), getHeight());
12655 return getHeight();
12697 return getHeight();
13854 if (getWidth() == 0 || getHeight() == 0) {
14250 if (bitmap == null || bitmap.getWidth() != width || bitmap.getHeight() !
[all...]

Completed in 283 milliseconds

1234