/frameworks/base/graphics/java/android/graphics/ |
H A D | BitmapFactory.java | 368 * <p>outWidth will be set to -1 if there is an error trying to decode.</p> 370 public int outWidth; field in class:BitmapFactory.Options 430 * or if inJustDecodeBounds is true, will set outWidth/outHeight 472 * size be returned (in opts.outWidth and opts.outHeight) 557 * size be returned (in opts.outWidth and opts.outHeight) 617 * size be returned (in opts.outWidth and opts.outHeight) 701 * size be returned (in opts.outWidth and opts.outHeight)
|
/frameworks/base/libs/hwui/renderstate/ |
H A D | RenderState.cpp | 140 void RenderState::getViewport(GLsizei* outWidth, GLsizei* outHeight) { argument 141 *outWidth = mViewportWidth;
|
/frameworks/base/packages/WallpaperCropper/src/com/android/wallpapercropper/ |
H A D | WallpaperCropActivity.java | 428 final int outWidth = (int) Math.round(cropRect.width() * cropScale); 440 cropRect, cropRotation, outWidth, outHeight, true, false, onEndCrop); 470 RectF cropBounds, int rotation, int outWidth, int outHeight, 475 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable); 479 RectF cropBounds, int rotation, int outWidth, int outHeight, 483 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable); 487 RectF cropBounds, int rotation, int outWidth, int outHeight, 492 outWidth, outHeight, setWallpaper, saveCroppedBitmap, onEndRunnable); 496 RectF cropBounds, int rotation, int outWidth, int outHeight, 502 outWidth, outHeigh 469 BitmapCropTask(Context c, String filePath, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument 478 BitmapCropTask(byte[] imageBytes, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument 486 BitmapCropTask(Context c, Uri inUri, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument 495 BitmapCropTask(Context c, Resources res, int inResId, RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument 505 init(RectF cropBounds, int rotation, int outWidth, int outHeight, boolean setWallpaper, boolean saveCroppedBitmap, Runnable onEndRunnable) argument 813 getMaxCropRect( int inWidth, int inHeight, int outWidth, int outHeight, boolean leftAligned) argument [all...] |
/frameworks/av/cmds/screenrecord/ |
H A D | screenrecord.cpp | 275 uint32_t outWidth, outHeight; local 285 outWidth = videoWidth; 290 outWidth = (uint32_t)(videoHeight / displayAspect); 293 offX = (videoWidth - outWidth) / 2; 295 Rect displayRect(offX, offY, offX + outWidth, offY + outHeight); 300 outHeight, outWidth, offY, offX); 304 outWidth, outHeight, offX, offY);
|
/frameworks/base/core/java/android/app/ |
H A D | WallpaperManager.java | 572 * @param outWidth The width of the returned drawable 573 * @param outWidth The height of the returned drawable 582 public Drawable getBuiltInDrawable(int outWidth, int outHeight, argument 584 return getBuiltInDrawable(outWidth, outHeight, scaleToFit, 592 * @param outWidth The width of the returned drawable 593 * @param outWidth The height of the returned drawable 604 public Drawable getBuiltInDrawable(int outWidth, int outHeight, boolean scaleToFit, argument 627 if (outWidth <= 0 || outHeight <= 0) { 638 if (options.outWidth != 0 && options.outHeight != 0) { 639 inWidth = options.outWidth; 741 getMaxCropRect(int inWidth, int inHeight, int outWidth, int outHeight, float horizontalAlignment, float verticalAlignment) argument [all...] |
/frameworks/av/services/camera/libcameraservice/api2/ |
H A D | CameraDeviceClient.cpp | 1157 /*out*/int32_t* outWidth, /*out*/int32_t* outHeight) { 1195 if (outWidth != NULL) { 1196 *outWidth = bestWidth; 1155 roundBufferDimensionNearest(int32_t width, int32_t height, int32_t format, android_dataspace dataSpace, const CameraMetadata& info, int32_t* outWidth, int32_t* outHeight) argument
|