Searched refs:nativeHeight (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/media/java/android/media/videoeditor/
H A DMediaImageItem.java940 final int nativeHeight = dbo.outHeight;
942 Log.d(TAG, "generateThumbnail: Input: " + nativeWidth + "x" + nativeHeight
948 if (nativeWidth > width || nativeHeight > height) {
950 float dy = ((float)nativeHeight) / ((float)height);
955 if (((float)nativeHeight / dx) < (float)height) {
956 bitmapHeight = (float)Math.ceil(nativeHeight / dx);
958 bitmapHeight = (float)Math.floor(nativeHeight / dx);
976 (float) nativeHeight / bitmapHeight));
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java747 return mHeight == -1 ? mHeight = nativeHeight(mNativeBitmap) : mHeight;
1187 private static native int nativeHeight(int nativeBitmap); method in class:Bitmap
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DBitmap_Delegate.java295 /*package*/ static int nativeHeight(int nativeBitmap) { method in class:Bitmap_Delegate

Completed in 141 milliseconds