HomeSort by relevance Sort by last modified time
    Searched refs:cropped (Results 1 - 6 of 6) sorted by null

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/crop/
CropObject.java 266 RectF cropped = mBoundedRect.getInner(); local
268 float left = Math.abs(x - cropped.left);
269 float right = Math.abs(x - cropped.right);
270 float top = Math.abs(y - cropped.top);
271 float bottom = Math.abs(y - cropped.bottom);
275 if ((left <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
276 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right)) {
279 else if ((right <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
280 && ((y - mTouchTolerance) <= cropped.bottom)) {
285 if ((top <= mTouchTolerance) && ((x + mTouchTolerance) >= cropped.left
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
ImageCrop.java 238 * Sets cropped bounds; modifies the bounds if it's smaller than the allowed
290 RectF cropped = getLocalCropBounds(); local
291 m.mapRect(cropped);
292 mBounded = getBoundedCrop(cropped);
295 float left = Math.abs(x - cropped.left);
296 float right = Math.abs(x - cropped.right);
297 float top = Math.abs(y - cropped.top);
298 float bottom = Math.abs(y - cropped.bottom);
301 if ((left <= mTouchTolerance) && ((y + mTouchTolerance) >= cropped.top)
302 && ((y - mTouchTolerance) <= cropped.bottom) && (left < right))
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
PaletteControl.java 1022 BufferedImage cropped; local
    [all...]
ImageUtils.java 128 * Crops blank pixels from the edges of the image and returns the cropped result. We
132 * @param image the image to be cropped
136 * @return a cropped version of the source image, or null if the whole image was blank
147 * Crops blank pixels from the edges of the image and returns the cropped result. We
151 * @param image the image to be cropped
156 * @return a cropped version of the source image, or null if the whole image was blank
173 * Crops pixels of a given color from the edges of the image and returns the cropped
176 * @param image the image to be cropped
182 * @return a cropped version of the source image, or null if the whole image was blank
194 * Crops pixels of a given color from the edges of the image and returns the cropped
329 BufferedImage cropped = new BufferedImage(width, height, imageType); local
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapRegionDecoderTest.java 306 Bitmap cropped = Bitmap.createBitmap(rect.width(), rect.height(), local
308 Canvas canvas = new Canvas(cropped);
311 return cropped;
  /external/v8/src/
mirror-debugger.js     [all...]

Completed in 740 milliseconds