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

1234

/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.java249 reconfigure(width, getHeight(), getConfig());
281 reconfigure(getWidth(), getHeight(), config);
592 final int height = src.getHeight();
614 return createBitmap(src, 0, 0, src.getWidth(), src.getHeight());
669 if (y + height > source.getHeight()) {
675 height == source.getHeight() && (m == null || m.isIdentity())) {
1083 public final int getHeight() { method in class:Bitmap
1100 return scaleFromDensity(getHeight(), mDensity, canvas.mDensity);
1116 return scaleFromDensity(getHeight(), mDensity, metrics.densityDpi);
1138 return scaleFromDensity(getHeight(), mDensit
[all...]
H A DCanvas.java276 public int getHeight() { method in class:Canvas
1376 bottom = bitmap.getHeight();
1423 bottom = bitmap.getHeight();
1919 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1920 scale(dst.width() / picture.getWidth(), dst.height() / picture.getHeight());
1932 if (picture.getWidth() > 0 && picture.getHeight() > 0) {
1934 (float) dst.height() / picture.getHeight());
/frameworks/base/libs/hwui/
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 DMediaCodec.java1719 public int getHeight() { method in class:MediaCodec.MediaImage
/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.java520 public int getHeight() { method in class:ListPopupWindow
1740 (x >= 0 && x < mPopup.getWidth() && y >= 0 && y < mPopup.getHeight())) {
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DRecyclerView.java1065 top + shadowingView.getHeight());
1330 mTopGlow.onPull(-overscrollY / (float) getHeight());
1333 mBottomGlow.onPull(overscrollY / (float) getHeight());
1471 mTempRect.set(0, 0, focused.getWidth(), focused.getHeight());
2365 newTop + disappearingItemView.getHeight());
2453 c.translate(-getHeight() + padding, 0);
2478 c.translate(-getWidth() + getPaddingRight(), -getHeight() + getPaddingBottom());
2480 c.translate(-getWidth(), -getHeight());
3079 top + shadowingView.getHeight());
3206 final int containerSize = horizontal ? getWidth() : getHeight();
5565 public int getHeight() { method in class:RecyclerView.LayoutManager
[all...]
/frameworks/base/core/java/android/view/
H A DView.java358 * {@link #getWidth()} and {@link #getHeight()}.
5596 position.bottom = Math.min(position.bottom, parentView.getHeight());
10009 public final int getHeight() { method in class:View
10016 * getWidth(), and getHeight(). These bounds do not account for any
10069 * {@link #getHeight()} to see how wide a view is after layout.
11259 tmpRect.set(0, 0, getWidth(), getHeight());
12766 return getHeight();
12808 return getHeight();
13973 if (getWidth() == 0 || getHeight() == 0) {
14384 if (bitmap == null || bitmap.getWidth() != width || bitmap.getHeight() !
[all...]

Completed in 183 milliseconds

1234