/external/dng_sdk/source/ |
D | dng_misc_opcodes.h | 183 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds); 189 const dng_rect &imageBounds); 243 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds); 249 const dng_rect &imageBounds); 284 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds); 290 const dng_rect &imageBounds); 325 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds); 331 const dng_rect &imageBounds); 364 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds); 370 const dng_rect &imageBounds); [all …]
|
D | dng_bad_pixels.h | 62 const dng_rect &imageBounds); 67 const dng_rect &imageBounds, 77 const dng_rect &imageBounds); 222 const dng_rect &imageBounds, 266 const dng_rect &imageBounds); 271 const dng_rect &imageBounds, 281 const dng_rect &imageBounds); 295 const dng_rect &imageBounds); 305 const dng_rect &imageBounds);
|
D | dng_opcodes.h | 291 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 293 return imageBounds; in ModifiedBounds() 328 const dng_rect &imageBounds) in SrcTileSize() argument 331 imageBounds).Size (); in SrcTileSize() 393 const dng_rect &imageBounds) = 0; 431 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 433 return imageBounds; in ModifiedBounds() 495 const dng_rect &imageBounds) = 0;
|
D | dng_bad_pixels.cpp | 486 const dng_rect &imageBounds, in IsPointValid() argument 492 if (pt.v < imageBounds.t || in IsPointValid() 493 pt.h < imageBounds.l || in IsPointValid() 494 pt.v >= imageBounds.b || in IsPointValid() 495 pt.h >= imageBounds.r) in IsPointValid() 1032 const dng_rect &imageBounds) in FixClusteredPixel() argument 1084 imageBounds, in FixClusteredPixel() 1541 const dng_rect &imageBounds) in FixClusteredRect() argument 1669 imageBounds)) in FixClusteredRect() 1725 const dng_rect &imageBounds) in ProcessArea() argument [all …]
|
D | dng_gain_map.h | 192 virtual dng_rect ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 194 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() 203 const dng_rect &imageBounds);
|
D | dng_misc_opcodes.cpp | 390 dng_rect dng_opcode_MapTable::ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 393 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() 609 dng_rect dng_opcode_MapPolynomial::ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 612 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() 971 dng_rect dng_opcode_DeltaPerRow::ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 974 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() 1177 dng_rect dng_opcode_DeltaPerColumn::ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 1180 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() 1357 dng_rect dng_opcode_ScalePerRow::ModifiedBounds (const dng_rect &imageBounds) in ModifiedBounds() argument 1360 return fAreaSpec.Overlap (imageBounds); in ModifiedBounds() [all …]
|
D | dng_lens_correction.h | 618 const dng_rect &imageBounds, 627 const dng_rect &imageBounds);
|
D | dng_gain_map.cpp | 547 const dng_rect &imageBounds) in ProcessArea() argument 573 imageBounds, in ProcessArea()
|
D | dng_lens_correction.cpp | 2173 const dng_rect &imageBounds, in Prepare() argument 2204 const dng_rect_real64 bounds (imageBounds); in Prepare()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/ |
D | CImageLabel.java | 108 Rectangle imageBounds = m_image == null ? new Rectangle(0, 0, 0, 0) : m_image.getBounds(); in doPaint() local 112 int y = clientArea.y + (clientArea.height - imageBounds.height) / 2; in doPaint() 116 int x = clientArea.x + imageBounds.width + SPACE; in doPaint() 134 Rectangle imageBounds = m_image == null ? new Rectangle(0, 0, 0, 0) : m_image.getBounds(); in computeSize() local 136 int width = imageBounds.width + SPACE + textExtent.x; in computeSize() 137 int height = Math.max(imageBounds.height, textExtent.y); in computeSize()
|
D | CFlatButton.java | 99 Rectangle imageBounds = image.getBounds(); in CFlatButton() 101 int x = ca.x + (ca.width - imageBounds.width) / 2; in CFlatButton() 102 int y = ca.y + (ca.height - imageBounds.height) / 2; in CFlatButton()
|
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/ |
D | DrawUtils.java | 78 Rectangle imageBounds = image.getBounds(); in drawImageCV() local 79 gc.drawImage(image, x, y + (height - imageBounds.height) / 2); in drawImageCV() 88 Rectangle imageBounds = image.getBounds(); in drawImageCHCV() local 89 int centerX = (width - imageBounds.width) / 2; in drawImageCHCV() 90 int centerY = y + (height - imageBounds.height) / 2; in drawImageCHCV() 230 Rectangle imageBounds = image.getBounds(); in getThubmnail() local 231 int imageWidth = imageBounds.width; in getThubmnail() 232 int imageHeight = imageBounds.height; in getThubmnail()
|
/external/skia/src/gpu/ |
D | SkGr.cpp | 52 void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds) { in GrMakeKeyFromImageID() argument 55 SkASSERT(!imageBounds.isEmpty()); in GrMakeKeyFromImageID() 59 builder[1] = imageBounds.fLeft; in GrMakeKeyFromImageID() 60 builder[2] = imageBounds.fTop; in GrMakeKeyFromImageID() 61 builder[3] = imageBounds.fRight; in GrMakeKeyFromImageID() 62 builder[4] = imageBounds.fBottom; in GrMakeKeyFromImageID()
|
D | SkGrPriv.h | 40 void GrMakeKeyFromImageID(GrUniqueKey* key, uint32_t imageID, const SkIRect& imageBounds);
|
/external/skia/src/pdf/ |
D | SkPDFDevice.cpp | 1150 SkRect imageBounds = SkRect::Make(image->bounds()); in drawImageRect() local 1156 tmpSrc = imageBounds; in drawImageRect() 1164 if (!imageBounds.contains(*src)) { in drawImageRect() 1165 if (!tmpSrc.intersect(imageBounds)) { in drawImageRect() 2260 SkRect imageBounds = SkRect::Make(image->bounds()); in internalDrawImage() local 2261 perspectiveOutline.addRect(imageBounds); in internalDrawImage() 2277 physicalPerspectiveOutline.addRect(imageBounds); in internalDrawImage()
|
/external/skia/include/core/ |
D | SkImageFilter.h | 96 void applyTo(const SkIRect& imageBounds, const SkMatrix&, SkIRect* cropped) const;
|
/external/skia/src/core/ |
D | SkImageFilter.cpp | 69 void SkImageFilter::CropRect::applyTo(const SkIRect& imageBounds, in applyTo() argument 72 *cropped = imageBounds; in applyTo()
|