/hardware/intel/img/hwcomposer/moorefield_hdmi/include/ |
DataBuffer.h | 24 typedef struct crop { struct in namespace:android::intel
|
/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
TaskPreviewChainedJpeg.java | 64 Rect safeCrop = guaranteedSafeCrop(img.proxy, img.crop);
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/ |
CropExtras.java | 17 package com.android.gallery3d.filtershow.crop;
|
/frameworks/native/libs/gui/include/gui/ |
IGraphicBufferProducer.h | 308 // * crop rect is out of bounds of the buffer dimensions 317 // crop - a crop rectangle that's used as a hint to the consumer 331 dataSpace(_dataSpace), crop(_crop), scalingMode(_scalingMode), 344 *outCrop = crop; 373 Rect crop; member in struct:android::IGraphicBufferProducer::QueueBufferInput
|
/hardware/qcom/display/msm8084/libhwcomposer/ |
hwc_ad.cpp | 172 const hwc_rect_t& crop, 239 hwc_rect_t dst = crop; //input same as output 241 if(configMdp(ctx->mOverlay, parg, OVERLAY_TRANSFORM_0, crop, dst, NULL,
|
/hardware/qcom/display/msm8226/libhwcomposer/ |
hwc_ad.cpp | 151 const hwc_rect_t& crop, 214 hwc_rect_t dst = crop; //input same as output 216 if(configMdp(ctx->mOverlay, parg, OVERLAY_TRANSFORM_0, crop, dst, NULL,
|
hwc_mdpcomp.cpp | 352 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); 355 int crop_w = rotated90 ? crop.bottom - crop.top : crop.right - crop.left; 356 int crop_h = rotated90 ? crop.right - crop.left : crop.bottom - crop.top; 391 * 1. Src crop > MAX_DISPLAY_DIM on nonsplit MDPCom 847 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local 2241 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local 2312 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local [all...] |
/hardware/qcom/display/msm8994/libhwcomposer/ |
hwc_ad.cpp | 155 const hwc_rect_t& crop, 218 hwc_rect_t dst = crop; //input same as output 220 if(configMdp(ctx->mOverlay, parg, OVERLAY_TRANSFORM_0, crop, dst, NULL,
|
hwc_mdpcomp.cpp | 410 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); 413 int crop_w = rotated90 ? crop.bottom - crop.top : crop.right - crop.left; 414 int crop_h = rotated90 ? crop.right - crop.left : crop.bottom - crop.top; 449 * 1. Src crop > Mixer limit on nonsplit MDPCom 948 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local 2751 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local 2836 hwc_rect_t crop = integerizeSourceCrop(layer->sourceCropf); local [all...] |
hwc_mdpcomp.h | 166 virtual void trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& crop, 322 virtual void trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& crop, 350 virtual void trimAgainstROI(hwc_context_t *ctx, hwc_rect_t& crop,
|
/device/google/marlin/camera/QCamera2/HAL3/ |
QCamera3PostProc.cpp | 1222 cam_rect_t crop; local 1509 cam_rect_t crop; local [all...] |
/frameworks/base/services/core/java/com/android/server/wm/ |
TaskSnapshotSurface.java | 319 final Rect crop = calculateSnapshotCrop(); local 320 final Rect frame = calculateSnapshotFrame(crop); 326 mChildSurfaceControl.setWindowCrop(crop); 345 * Calculates the snapshot crop in snapshot coordinate space. 347 * @return crop rect in snapshot coordinate space. 366 * Calculates the snapshot frame in window coordinate space from crop. 368 * @param crop rect that is in snapshot coordinate space. 371 Rect calculateSnapshotFrame(Rect crop) { 372 final Rect frame = new Rect(crop); 379 frame.offsetTo((int) (-crop.left / scale), (int) (-crop.top / scale)) [all...] |
/frameworks/native/libs/gui/tests/ |
SurfaceTextureGL_test.cpp | 149 const android_native_rect_t& crop(crops[i]); 151 crop.left, crop.top, crop.right, crop.bottom).string()); 153 ASSERT_EQ(NO_ERROR, native_window_set_crop(mANW.get(), &crop)); 164 fillYV12BufferRect(img, texWidth, texHeight, buf->getStride(), crop); 564 // ie NATIVE_WINDOW_SCALING_MODE_CROP should crop 581 // The crop is in the shape of (320, 180) === 16 x 9 589 // crop should be the same as crop (same aspect ratio [all...] |
IGraphicBufferProducer_test.cpp | 155 crop = QUEUE_BUFFER_INPUT_RECT; 166 crop, 187 QueueBufferInputBuilder& setCrop(Rect crop) { 188 this->crop = crop; 211 Rect crop; member in struct:android::IGraphicBufferProducerTest::QueueBufferInputBuilder 490 // Crop rect is out of bounds of the buffer dimensions
|
/hardware/qcom/camera/msm8998/QCamera2/HAL/ |
QCameraChannel.cpp | 527 * crop information 528 * @crop_info : crop info as a result of zoom operation [all...] |
QCameraPostProc.cpp | 537 cam_rect_t crop; local 538 memset(&crop, 0, sizeof(cam_rect_t)); 539 main_stream->getCropInfo(crop); 549 if (hdr_output_crop && crop.height) { 550 dst_dim.height = crop.height; 554 if (hdr_output_crop && crop.width) { 555 dst_dim.width = crop.width; 702 // crop is the same if frame is the same 704 memset(&crop, 0, sizeof(cam_rect_t)); 705 thumb_stream->getCropInfo(crop); 2320 cam_rect_t crop; local [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
ImageUtils.java | 129 * crop off pixels that are blank (meaning they have an alpha value = 0). Note that 134 * crop to continue. This can be used to crop an image where you already 148 * crop off pixels that are blank (meaning they have an alpha value = 0). Note that 153 * crop to continue. This can be used to crop an image where you already 162 public boolean crop(BufferedImage bufferedImage, int x, int y) { 169 return crop(image, filter, initialCrop, imageType); 180 * crop to continue. This can be used to crop an image where you alread 231 boolean crop(BufferedImage image, int x, int y); method in interface:ImageUtils.CropFilter 234 private static BufferedImage crop(BufferedImage image, CropFilter filter, Rect initialCrop, method in class:ImageUtils [all...] |
/device/google/marlin/camera/QCamera2/HAL/ |
QCameraPostProc.cpp | 482 cam_rect_t crop; local 483 memset(&crop, 0, sizeof(cam_rect_t)); 484 main_stream->getCropInfo(crop); 492 if (hdr_output_crop && crop.height) { 493 dst_dim.height = crop.height; 497 if (hdr_output_crop && crop.width) { 498 dst_dim.width = crop.width; 617 // crop is the same if frame is the same 619 memset(&crop, 0, sizeof(cam_rect_t)); 620 thumb_stream->getCropInfo(crop); 2091 cam_rect_t crop; local [all...] |
/frameworks/base/core/java/android/app/ |
WallpaperManager.java | 107 * <p>Input: {@link Intent#getData} is the URI of the image to crop and set as wallpaper. 108 * <p>Output: RESULT_OK if user decided to crop/set the wallpaper, RESULT_CANCEL otherwise 575 * @param horizontalAlignment A float value between 0 and 1 specifying where to crop the image; 577 * @param verticalAlignment A float value between 0 and 1 specifying where to crop the image; 595 * @param horizontalAlignment A float value between 0 and 1 specifying where to crop the image; 597 * @param verticalAlignment A float value between 0 and 1 specifying where to crop the image; 669 Log.w(TAG, "crop has bad values for full size image"); 685 Bitmap crop = null; local 687 // Do region decoding to get crop bitmap 692 crop = decoder.decodeRegion(roundedTrueCrop, options) [all...] |
/hardware/intel/common/libmix/videoencoder/ |
VideoEncoderAVC.cpp | 43 mVideoParamsAVC.crop.LeftOffset = 0; 44 mVideoParamsAVC.crop.RightOffset = 0; 45 mVideoParamsAVC.crop.TopOffset = 0; 46 mVideoParamsAVC.crop.BottomOffset = 0; [all...] |
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/ |
CropView.java | 196 public void setParallaxOffset(float offset, RectF crop) { 199 mCenterX = screenWidth / 2 + offset * (crop.width() - screenWidth) + crop.left;
|
/device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpegdec_test.c | 310 p_job_params->main_dim.crop.top = 0; 311 p_job_params->main_dim.crop.left = 0; 312 p_job_params->main_dim.crop.width = p_obj->width; 313 p_job_params->main_dim.crop.height = p_obj->height;
|
/external/autotest/client/cros/video/ |
chameleon_screenshot_capturer.py | 103 img.crop(box).save(fullpath)
|
/hardware/qcom/camera/msm8998/QCamera2/stack/mm-jpeg-interface/test/ |
mm_jpegdec_test.c | 310 p_job_params->main_dim.crop.top = 0; 311 p_job_params->main_dim.crop.left = 0; 312 p_job_params->main_dim.crop.width = p_obj->width; 313 p_job_params->main_dim.crop.height = p_obj->height;
|
/hardware/qcom/display/msm8996/sdm/libs/core/ |
comp_manager.h | 64 DisplayError ValidateScaling(const LayerRect &crop, const LayerRect &dst, bool rotate90);
|