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

  /external/chromium_org/third_party/WebKit/Source/platform/
DragImage.cpp 69 PassOwnPtr<DragImage> DragImage::create(Image* image, RespectImageOrientationEnum shouldRespectImageOrientation, float deviceScaleFactor)
83 if (shouldRespectImageOrientation == RespectImageOrientation)
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
BitmapImage.cpp 267 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect, const FloatRect& srcRect, CompositeOperator compositeOp, blink::WebBlendMode blendMode, RespectImageOrientationEnum shouldRespectImageOrientation)
286 if (shouldRespectImageOrientation == RespectImageOrientation)
GraphicsContext.cpp 987 void GraphicsContext::drawImage(Image* image, const IntPoint& p, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation)
991 drawImage(image, FloatRect(IntRect(p, image->size())), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation);
994 void GraphicsContext::drawImage(Image* image, const IntRect& r, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation)
998 drawImage(image, FloatRect(r), FloatRect(FloatPoint(), FloatSize(image->size())), op, shouldRespectImageOrientation);
1001 void GraphicsContext::drawImage(Image* image, const FloatRect& dest, const FloatRect& src, CompositeOperator op, RespectImageOrientationEnum shouldRespectImageOrientation)
1003 drawImage(image, dest, src, op, blink::WebBlendModeNormal, shouldRespectImageOrientation);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.cpp 321 context->drawImage(image.get(), pixelSnappedIntRect(LayoutRect(paintOffset + imageOffset, imageSize)), CompositeSourceOver, shouldRespectImageOrientation());
459 context->drawImage(m_imageResource->image(alignedRect.width(), alignedRect.height()).get(), alignedRect, compositeOperator, shouldRespectImageOrientation());
RenderObject.h     [all...]
RenderObject.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ImageResource.cpp 264 if (m_image->isBitmapImage() && (renderer && renderer->shouldRespectImageOrientation() == RespectImageOrientation))
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalFrame.cpp 600 return DragImage::create(image.get(), renderer->shouldRespectImageOrientation(), deviceScaleFactor);
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp     [all...]

Completed in 1371 milliseconds