Searched defs:targetRect (Results 1 - 7 of 7) sorted by last modified time

/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGResourceGradient.cpp112 FloatRect& targetRect,
120 targetRect = textRootBlock->repaintRectInLocalCoordinates();
125 FloatRect absoluteTargetRect = absoluteTransform.mapRect(targetRect);
250 FloatRect targetRect; local
251 gradientData->gradient->setGradientSpaceTransform(clipToTextMask(context, m_imageBuffer, targetRect, object, boundingBoxMode(), gradientTransform));
254 context->fillRect(targetRect);
110 clipToTextMask(GraphicsContext* context, OwnPtr<ImageBuffer>& imageBuffer, FloatRect& targetRect, RenderObject* object, bool boundingBoxMode, const AffineTransform& gradientTransform) argument
/external/webkit/Source/WebCore/page/
H A DSpatialNavigation.cpp51 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize);
98 static RectsAlignment alignmentForRects(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize) argument
101 if (areRectsMoreThanFullScreenApart(direction, curRect, targetRect, viewSize))
104 if (areRectsFullyAligned(direction, curRect, targetRect))
107 if (areRectsPartiallyAligned(direction, curRect, targetRect))
243 static bool areRectsMoreThanFullScreenApart(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect, const IntSize& viewSize) argument
245 ASSERT(isRectInDirection(direction, curRect, targetRect));
249 return curRect.x() - targetRect.maxX() > viewSize.width();
251 return targetRect.x() - curRect.maxX() > viewSize.width();
253 return curRect.y() - targetRect
274 isRectInDirection(FocusDirection direction, const IntRect& curRect, const IntRect& targetRect) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/opengl/
H A DTextureMapperGL.cpp363 void TextureMapperGL::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& modelViewMatrix, float opacity, const BitmapTexture* maskTexture) argument
394 targetRect.width(), 0, 0, 0,
395 0, targetRect.height(), 0, 0,
397 targetRect.x(), targetRect.y(), 0, 1));
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DTextureMapperQt.cpp135 void TextureMapperQt::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture) argument
160 painter->drawPixmap(targetRect, pixmap, textureQt.sourceRect());
/external/webkit/Source/WebCore/platform/graphics/texmap/
H A DTextureMapperNode.h176 inline IntRect targetRect() const function in class:WebCore::TextureMapperNode
H A DTextureMapperPlatformLayer.h57 IntRect targetRect; member in struct:WebCore::TextureMapperContentLayer::PaintOptions
/external/webkit/Source/WebCore/platform/gtk/
H A DWidgetRenderingContext.cpp69 WidgetRenderingContext::WidgetRenderingContext(GraphicsContext* graphicsContext, const IntRect& targetRect) argument
71 , m_targetRect(targetRect)
80 m_paintRect = graphicsContext->getCTM().mapRect(targetRect);

Completed in 198 milliseconds