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

1 2

  /hardware/intel/img/hwcomposer/merrifield/platforms/merrifield/
PlatfBufferManager.cpp 57 const crop_t& destRect, bool filter, bool async)
66 destRect.w, destRect.h, destRect.x,
67 destRect.y, 0, -1, &fenceFd)) {
PlatfBufferManager.h 37 const crop_t& destRect, bool filter, bool async);
  /hardware/intel/img/hwcomposer/merrifield/platforms/merrifield_plus/
PlatfBufferManager.cpp 57 const crop_t& destRect, bool filter, bool async)
66 destRect.w, destRect.h, destRect.x,
67 destRect.y, 0, -1, &fenceFd)) {
PlatfBufferManager.h 37 const crop_t& destRect, bool filter, bool async);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/lettertiles/
LetterTileDrawable.java 114 final Rect destRect = copyBounds();
117 final int halfLength = (int) (mScale * Math.min(destRect.width(), destRect.height()) / 2);
119 destRect.set(destRect.centerX() - halfLength,
120 (int) (destRect.centerY() - halfLength + mOffset * destRect.height()),
121 destRect.centerX() + halfLength,
122 (int) (destRect.centerY() + halfLength + mOffset * destRect.height()))
    [all...]
  /frameworks/base/core/java/android/view/
FocusFinder.java 365 * Is destRect a candidate for the next focus given the direction? This
372 boolean isCandidate(Rect srcRect, Rect destRect, int direction) {
375 return (srcRect.right > destRect.right || srcRect.left >= destRect.right)
376 && srcRect.left > destRect.left;
378 return (srcRect.left < destRect.left || srcRect.right <= destRect.left)
379 && srcRect.right < destRect.right;
381 return (srcRect.bottom > destRect.bottom || srcRect.top >= destRect.bottom
    [all...]
FocusFinderHelper.java 44 public boolean isCandidate(Rect srcRect, Rect destRect, int direction) {
45 return mFocusFinder.isCandidate(srcRect, destRect, direction);
  /frameworks/support/v4/java/android/support/v4/widget/
FocusStrategy.java 287 * Is destRect a candidate for the next focus given the direction? This
294 private static boolean isCandidate(@NonNull Rect srcRect, @NonNull Rect destRect,
298 return (srcRect.right > destRect.right || srcRect.left >= destRect.right)
299 && srcRect.left > destRect.left;
301 return (srcRect.left < destRect.left || srcRect.right <= destRect.left)
302 && srcRect.right < destRect.right;
304 return (srcRect.bottom > destRect.bottom || srcRect.top >= destRect.bottom
    [all...]
  /external/skia/tests/
IndexedPngOverflowTest.cpp 38 SkRect destRect = SkRect::MakeXYWH(0, 0, 20, 1);
39 canvas->drawBitmapRect(image, destRect, nullptr);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/tools/
IconFactory.java 83 Rect destRect = new Rect(0, 0, iconWidth, iconHeight);
106 canvas.drawBitmap(sourceImage, srcRect, destRect, new Paint(Paint.FILTER_BITMAP_FLAG));
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
GlideBitmapDrawable.java 20 private final Rect destRect = new Rect();
98 Gravity.apply(BitmapState.GRAVITY, width, height, getBounds(), destRect);
101 canvas.drawBitmap(state.bitmap, null, destRect, state.paint);
  /hardware/intel/img/hwcomposer/merrifield/include/
BufferManager.h 63 const crop_t& destRect, bool filter, bool async) = 0;
  /frameworks/base/libs/hwui/
Readback.cpp 165 Rect destRect(destWidth, destHeight);
172 .setModelViewMapUnitToRect(destRect)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
ImageFilterTinyPlanet.java 144 RectF destRect = new RectF(left * scale, top * scale, right * scale, bottom * scale);
145 paddedCanvas.drawBitmap(bitmapIn, null, destRect, null);
  /hardware/qcom/display/msm8226/libhwcomposer/
hwc_copybit.h 91 hwc_rect_t destRect);
hwc_copybit.cpp 636 hwc_rect_t destRect)
678 copybit_rect_t dstRect = {destRect.left, destRect.top, destRect.right,
679 destRect.bottom};
691 // Copybit region is the destRect
    [all...]
  /hardware/qcom/display/msm8994/libhwcomposer/
hwc_copybit.h 91 hwc_rect_t destRect);
hwc_copybit.cpp 657 hwc_rect_t destRect = getIntersection(overlap, layer->displayFrame);
658 destRect.left = destRect.left - overlap.left +
660 destRect.right = destRect.right- overlap.left +
662 destRect.top = destRect.top - overlap.top +
664 destRect.bottom = destRect.bottom - overlap.top +
668 overlap, destRect);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/gif/
GifDrawable.java 27 private final Rect destRect = new Rect();
224 Gravity.apply(GifState.GRAVITY, getIntrinsicWidth(), getIntrinsicHeight(), getBounds(), destRect);
230 canvas.drawBitmap(toDraw, null, destRect, paint);
  /hardware/qcom/display/msm8909/libhwcomposer/
hwc_copybit.h 98 hwc_rect_t destRect);
hwc_copybit.cpp 762 hwc_rect_t destRect = getIntersection(overlap, layer->displayFrame);
763 destRect.left = destRect.left - overlap.left +
765 destRect.right = destRect.right- overlap.left +
767 destRect.top = destRect.top - overlap.top +
769 destRect.bottom = destRect.bottom - overlap.top +
773 overlap, destRect);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplusgraphics.h 407 Status DrawImage(Image *image, const RectF& destRect,
417 destRect.X, destRect.Y,
418 destRect.Width, destRect.Height,
423 Status DrawImage(Image *image, const Rect& destRect,
433 destRect.X, destRect.Y,
434 destRect.Width, destRect.Height
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/common/devices/
VirtualDevice.cpp 466 if (!(mgr->blit(srcHandle, destHandle, destRect, false, false))) {
478 crop_t destRect;
    [all...]
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetFragment.java 479 RectF destRect = new RectF(left * scale, top * scale, right * scale, bottom * scale);
480 paddedCanvas.drawBitmap(bitmapIn, null, destRect, null);
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h     [all...]

Completed in 1584 milliseconds

1 2