HomeSort by relevance Sort by last modified time
    Searched refs:mCrop (Results 1 - 25 of 40) sorted by null

1 2

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterCropRepresentation.java 35 RectF mCrop = getNil();
50 this(m.mCrop);
59 mCrop.set(r.mCrop);
68 if (mCrop.bottom != crop.mCrop.bottom
69 || mCrop.left != crop.mCrop.left
70 || mCrop.right != crop.mCrop.righ
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/include/
DataBuffer.h 74 mCrop.x = x; mCrop.y = y; mCrop.w = w; mCrop.h = h; }
75 crop_t& getCrop() { return mCrop; }
93 memset(&mCrop, 0, sizeof(crop_t));
98 crop_t mCrop;
  /hardware/intel/img/hwcomposer/moorefield_hdmi/include/
DataBuffer.h 74 mCrop.x = x; mCrop.y = y; mCrop.w = w; mCrop.h = h; }
75 crop_t& getCrop() { return mCrop; }
93 memset(&mCrop, 0, sizeof(crop_t));
98 crop_t mCrop;
  /frameworks/av/services/camera/libcameraservice/device3/
Camera3StreamBufferListener.h 32 Rect mCrop;
  /external/replicaisland/src/com/replica/replicaisland/
DrawableBitmap.java 30 private int mCrop[];
40 mCrop = new int[4];
132 OpenGLSystem.setTextureCrop(mCrop);
196 mCrop[0] = left;
197 mCrop[1] = bottom;
198 mCrop[2] = width;
199 mCrop[3] = -height;
203 return mCrop;
  /hardware/intel/img/hwcomposer/merrifield/ips/anniedale/
AnnCursorPlane.h 53 crop_t mCrop;
AnnCursorPlane.cpp 32 memset(&mCrop, 0, sizeof(mCrop));
53 // clear mCrop once reset
54 memset(&mCrop, 0, sizeof(mCrop));
  /hardware/intel/img/hwcomposer/merrifield/ips/tangier/
TngCursorPlane.h 52 crop_t mCrop;
TngCursorPlane.cpp 33 memset(&mCrop, 0, sizeof(mCrop));
154 if (mCrop.w == 0 && mCrop.h == 0) {
155 mCrop = mSrcCrop;
160 if (i >= mCrop.h || j >= mCrop.w) {
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/
AnnCursorPlane.cpp 32 memset(&mCrop, 0, sizeof(mCrop));
52 // clear mCrop once reset
53 memset(&mCrop, 0, sizeof(mCrop));
153 if (mCrop.w == 0 && mCrop.h == 0) {
154 mCrop = mSrcCrop;
158 if (i >= mCrop.h || j >= mCrop.w)
    [all...]
AnnCursorPlane.h 53 crop_t mCrop;
  /frameworks/native/libs/gui/
CpuConsumer.cpp 126 b.mCrop,
132 b.mCrop,
152 b.mCrop,
158 b.mCrop,
192 nativeBuffer->crop = b.mCrop;
BufferItem.cpp 44 mCrop(Rect::INVALID_RECT),
71 addAligned(size, mCrop);
159 writeAligned(buffer, size, mCrop);
223 readAligned(buffer, size, mCrop);
BufferQueueCore.cpp 131 outResult->appendFormat("crop=[%d,%d,%d,%d] ", current->mCrop.left, current->mCrop.top,
132 current->mCrop.right, current->mCrop.bottom);
  /frameworks/native/libs/gui/include/gui/
BufferItem.h 63 // mCrop is the current crop rectangle for this buffer slot.
64 Rect mCrop;
  /packages/apps/Camera2/src/com/android/camera/one/v2/imagesaver/
JpegImageBackendImageSaver.java 89 mCrop), mExecutor, taskFlagsSet, mSession,
160 private final Rect mCrop;
176 mCrop = crop;
193 mCrop = crop;
YuvImageBackendImageSaver.java 90 mCrop), mExecutor, taskFlagsSet, mSession,
168 private final Rect mCrop;
183 mCrop = crop;
201 mCrop = crop;
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageStraighten.java 73 private RectF mCrop = new RectF();
114 reps.add(new FilterCropRepresentation(mCrop));
235 mCrop.set(tmp);
236 m.mapRect(mCrop);
237 FilterCropRepresentation.findNormalizedCrop(mCrop, imageWidth, imageHeight);
271 mPriorCropAtUp.set(mCrop);
  /frameworks/av/services/camera/libcameraservice/gui/
RingBufferConsumer.h 87 // mCrop is the current crop rectangle for this buffer slot.
88 Rect mCrop;
RingBufferConsumer.cpp 81 cur.mCrop = item.mCrop;
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 344 GL11Ext.GL_TEXTURE_CROP_RECT_OES, label.mCrop, 0);
381 mCrop = crop;
387 public int[] mCrop;
  /packages/apps/Gallery/src/com/android/camera/
CropImage.java 85 HighlightView mCrop;
216 if (mCrop == null) {
234 Rect srcRect = mCrop.getCropRect();
253 Rect r = mCrop.getCropRect();
349 extras.putString("rect", mCrop.getCropRect().toString());
542 mCrop = mImageView.mHighlightViews.get(0);
543 mCrop.setFocus(true);
677 cropImage.mCrop = hv;
  /frameworks/av/media/ndk/
NdkImageReader.cpp 411 Point lt = buffer->mCrop.leftTop();
529 if (!buffer->mCrop.isEmpty()) {
530 return buffer->mCrop.getWidth();
540 if (!buffer->mCrop.isEmpty()) {
541 return buffer->mCrop.getHeight();
  /frameworks/base/media/jni/
android_media_Utils.cpp 915 status_t res = lockImageFromBuffer(bufferItem->mGraphicBuffer, inUsage, bufferItem->mCrop,
922 outputImage->crop = bufferItem->mCrop;
935 if (!buffer->mCrop.isEmpty()) {
936 return buffer->mCrop.getWidth();
946 if (!buffer->mCrop.isEmpty()) {
947 return buffer->mCrop.getHeight();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropActivity.java 364 RectF mCrop = null;
392 mCrop = cropBounds;
426 if (mCrop != null && mPhoto != null && mOrig != null) {
427 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);
441 Bitmap ret = getCroppedImage(img, mCrop, mPhoto);
465 RectF trueCrop = CropMath.getScaledCropBounds(mCrop, mPhoto, mOrig);

Completed in 1319 milliseconds

1 2