HomeSort by relevance Sort by last modified time
    Searched refs:FloatRect (Results 76 - 100 of 309) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebCore/platform/graphics/filters/
FEGaussianBlur.h 41 virtual FloatRect uniteChildEffectSubregions(Filter* filter) { return calculateUnionOfChildEffectSubregions(filter, m_in.get()); }
SourceAlpha.cpp 45 FloatRect SourceAlpha::calculateEffectRect(Filter* filter)
47 FloatRect clippedSourceRect = filter->sourceImageRect();
66 FloatRect imageRect(FloatPoint(), filter->sourceImage()->image()->size());
  /external/webkit/WebCore/platform/graphics/wince/
GradientWince.cpp 47 void Gradient::fill(GraphicsContext* c, const FloatRect& r)
PathWince.cpp 24 #include "FloatRect.h"
66 FloatRect Path::boundingRect() const
106 void Path::addRect(const FloatRect& r)
111 void Path::addEllipse(const FloatRect& r)
141 FloatRect Path::strokeBoundingRect(StrokeStyleApplier *)
144 return FloatRect();
  /external/webkit/WebCore/rendering/
SVGRootInlineBox.h 68 virtual FloatRect objectBoundingBox() const { return FloatRect(); }
69 virtual FloatRect repaintRectInLocalCoordinates() const { return FloatRect(); }
RenderSVGContainer.h 58 virtual FloatRect objectBoundingBox() const;
59 virtual FloatRect strokeBoundingBox() const;
60 virtual FloatRect repaintRectInLocalCoordinates() const;
RenderSVGRoot.h 28 #include "FloatRect.h"
62 virtual FloatRect objectBoundingBox() const;
63 virtual FloatRect strokeBoundingBox() const { return computeContainerBoundingBox(this, true); }
64 virtual FloatRect repaintRectInLocalCoordinates() const;
RenderPath.cpp 105 FloatRect RenderPath::objectBoundingBox() const
108 return FloatRect();
116 FloatRect RenderPath::strokeBoundingBox() const
119 return FloatRect();
133 FloatRect RenderPath::markerBoundingBox() const
136 return FloatRect();
144 FloatRect RenderPath::repaintRectInLocalCoordinates() const
147 return FloatRect();
155 FloatRect rect = filterBoundingBoxForRenderer(this);
179 m_cachedLocalRepaintRect = FloatRect();
    [all...]
RenderSVGText.cpp 130 FloatRect boxRect(box->x(), box->y(), box->width(), box->height());
151 FloatRect boxRect(box->x(), box->y(), box->width(), box->height());
168 FloatRect RenderSVGText::objectBoundingBox() const
170 FloatRect boundingBox;
177 boundingBox.unite(FloatRect(box->x(), box->y(), box->width(), box->height()));
184 FloatRect RenderSVGText::strokeBoundingBox() const
186 FloatRect repaintRect = objectBoundingBox();
208 FloatRect RenderSVGText::repaintRectInLocalCoordinates() const
210 FloatRect repaintRect = strokeBoundingBox();
214 FloatRect rect = filterBoundingBoxForRenderer(this)
    [all...]
RenderSVGContainer.cpp 99 FloatRect boundingBox = repaintRectInLocalCoordinates();
134 FloatRect RenderSVGContainer::objectBoundingBox() const
139 FloatRect RenderSVGContainer::strokeBoundingBox() const
146 FloatRect RenderSVGContainer::repaintRectInLocalCoordinates() const
148 FloatRect repaintRect = computeContainerBoundingBox(this, true);
150 FloatRect rect = filterBoundingBoxForRenderer(this);
  /external/webkit/WebCore/svg/
SVGStyledLocatableElement.cpp 53 FloatRect SVGStyledLocatableElement::getBBox() const
SVGSymbolElement.h 49 DECLARE_ANIMATED_PROPERTY(SVGSymbolElement, SVGNames::viewBoxAttr, FloatRect, ViewBox, viewBox)
SVGZoomEvent.cpp 38 FloatRect SVGZoomEvent::zoomRectScreen() const
SVGFilterElement.h 76 FloatRect filterBoundingBox(const FloatRect&) const;
77 void buildFilter(const FloatRect& targetRect) const;
SVGMaskElement.h 49 FloatRect maskBoundingBox(const FloatRect&) const;
58 PassOwnPtr<ImageBuffer> drawMaskerContent(const RenderObject*, FloatRect& maskRect, bool& emptyMask) const;
SVGFilterElement.cpp 147 FloatRect SVGFilterElement::filterBoundingBox(const FloatRect& objectBoundingBox) const
149 FloatRect filterBBox;
151 filterBBox = FloatRect(x().valueAsPercentage() * objectBoundingBox.width() + objectBoundingBox.x(),
156 filterBBox = FloatRect(x().value(this),
164 void SVGFilterElement::buildFilter(const FloatRect& targetRect) const
169 FloatRect filterBBox;
171 filterBBox = FloatRect(x().valueAsPercentage(),
176 filterBBox = FloatRect(x().value(this),
181 FloatRect filterRect = filterBBox
    [all...]
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEOffset.h 41 virtual FloatRect uniteChildEffectSubregions(Filter* filter) { return calculateUnionOfChildEffectSubregions(filter, m_in.get()); }
  /external/webkit/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.h 32 #include "FloatRect.h"
37 class FloatRect;
47 void setWindowRect(const FloatRect&);
48 FloatRect windowRect();
50 FloatRect pageRect();
  /external/webkit/WebKit/mac/WebCoreSupport/
WebChromeClient.h 43 virtual void setWindowRect(const WebCore::FloatRect&);
44 virtual WebCore::FloatRect windowRect();
46 virtual WebCore::FloatRect pageRect();
126 virtual WebCore::FloatRect customHighlightRect(WebCore::Node*, const WebCore::AtomicString& type,
127 const WebCore::FloatRect& lineRect);
129 const WebCore::FloatRect& boxRect, const WebCore::FloatRect& lineRect,
  /external/webkit/WebCore/platform/graphics/skia/
ImageSkia.cpp 38 #include "FloatRect.h"
267 static FloatRect normalizeRect(const FloatRect& rect)
269 FloatRect norm = rect;
302 const FloatRect& floatSrcRect,
307 const FloatRect& destRect)
309 FloatRect normSrcRect = normalizeRect(floatSrcRect);
408 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
409 const FloatRect& srcRect, ColorSpace, CompositeOperator compositeOp)
423 FloatRect normDstRect = normalizeRect(dstRect)
    [all...]
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 32 #include "FloatRect.h"
246 void fillRect(const FloatRect&);
247 void fillRect(const FloatRect&, const Color&, ColorSpace);
248 void fillRect(const FloatRect&, Generator&);
251 void clearRect(const FloatRect&);
253 void strokeRect(const FloatRect&);
254 void strokeRect(const FloatRect&, float lineWidth);
260 void drawImage(Image*, ColorSpace styleColorSpace, const FloatRect& destRect, const FloatRect& srcRect = FloatRect(0, 0, -1, -1)
    [all...]
  /external/webkit/WebCore/platform/graphics/wx/
PathWx.cpp 31 #include "FloatRect.h"
96 FloatRect Path::boundingRect() const
104 return FloatRect();
107 FloatRect Path::strokeBoundingRect(StrokeStyleApplier* applier)
110 return FloatRect();
189 void Path::addRect(const FloatRect& rect)
197 void Path::addEllipse(const FloatRect& rect)
  /external/webkit/WebCore/platform/graphics/android/
GraphicsLayerAndroid.h 22 #include "FloatRect.h"
75 virtual void setNeedsDisplayInRect(const FloatRect&);
130 bool repaint(const FloatRect& rect);
151 Vector<FloatRect> m_invalidatedRects;
  /external/webkit/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 38 FloatRect Font::selectionRectForComplexText(const TextRun& run, const IntPoint& point, int h,
50 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
53 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/WebCore/platform/graphics/openvg/
GraphicsContextOpenVG.cpp 157 void GraphicsContext::fillRect(const FloatRect& rect)
165 void GraphicsContext::fillRect(const FloatRect& rect, const Color& color, ColorSpace colorSpace)
207 void GraphicsContext::clip(const FloatRect& rect)
247 strokeRect(FloatRect(finalFocusRect), 1.f);
279 FloatRect GraphicsContext::roundToDevicePixels(const FloatRect& rect)
282 return FloatRect();
284 return FloatRect(enclosingIntRect(m_data->transformationMatrix().mapRect(rect)));
324 void GraphicsContext::clearRect(const FloatRect& rect)
335 void GraphicsContext::strokeRect(const FloatRect& rect
    [all...]

Completed in 3982 milliseconds

1 2 34 5 6 7 8 91011>>