HomeSort by relevance Sort by last modified time
    Searched refs:FloatRect (Results 201 - 225 of 452) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/platform/graphics/chromium/
RenderSurfaceChromium.cpp 70 FloatRect RenderSurfaceChromium::drawableContentRect() const
72 FloatRect localContentRect(-0.5 * m_contentRect.width(), -0.5 * m_contentRect.height(),
74 FloatRect drawableContentRect = m_drawTransform.mapRect(localContentRect);
  /external/webkit/Source/WebCore/platform/graphics/mac/
FontComplexTextMac.cpp 41 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h,
53 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
56 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
  /external/webkit/Source/WebCore/platform/graphics/win/
FontWin.cpp 53 FloatRect Font::selectionRectForComplexText(const TextRun& run, const FloatPoint& point, int h,
66 return FloatRect(point.x() + floorf(totalWidth - afterWidth), point.y(), roundf(totalWidth - beforeWidth) - floorf(totalWidth - afterWidth), h);
69 return FloatRect(point.x() + floorf(beforeWidth), point.y(), roundf(afterWidth) - floorf(beforeWidth), h);
SimpleFontDataCairoWin.cpp 102 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph glyph) const
107 return FloatRect();
  /external/webkit/Source/WebCore/rendering/svg/
RenderSVGResourceMarker.cpp 77 FloatRect RenderSVGResourceMarker::markerBoundaries(const AffineTransform& markerTransformation) const
79 FloatRect coordinates = RenderSVGContainer::repaintRectInLocalCoordinates();
170 m_viewport = FloatRect(0, 0, w, h);
SVGRenderSupport.cpp 94 FloatRect repaintRect = object->repaintRectInLocalCoordinates();
163 void SVGRenderSupport::computeContainerBoundingBoxes(const RenderObject* container, FloatRect& objectBoundingBox, FloatRect& strokeBoundingBox, FloatRect& repaintBoundingBox)
182 bool SVGRenderSupport::paintInfoIntersectsRepaintRect(const FloatRect& localRepaintRect, const AffineTransform& localTransform, const PaintInfo& paintInfo)
269 void SVGRenderSupport::intersectRepaintRectWithResources(const RenderObject* object, FloatRect& repaintRect)
RenderSVGForeignObject.cpp 115 FloatRect oldViewport = m_viewport;
119 m_viewport = FloatRect(viewportLocation, FloatSize(foreign->width().value(foreign), foreign->height().value(foreign)));
  /external/webkit/Source/WebCore/svg/
SVGFilterPrimitiveStandardAttributes.cpp 140 FloatRect effectBBox;
142 effectBBox = FloatRect(x().valueAsPercentage(),
147 effectBBox = FloatRect(x().value(this),
SVGLocatable.cpp 67 FloatRect SVGLocatable::getBBox(const SVGElement* element, StyleUpdateStrategy styleUpdateStrategy)
75 return FloatRect();
  /external/webkit/Source/WebKit/android/WebCoreSupport/
ChromeClientAndroid.h 59 virtual void setWindowRect(const FloatRect&);
60 virtual FloatRect windowRect();
62 virtual FloatRect pageRect();
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
ChromeClientGtk.h 44 virtual void setWindowRect(const WebCore::FloatRect&);
45 virtual WebCore::FloatRect windowRect();
47 virtual WebCore::FloatRect pageRect();
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
ChromeClientWinCE.h 40 virtual void setWindowRect(const WebCore::FloatRect&);
41 virtual WebCore::FloatRect windowRect();
43 virtual WebCore::FloatRect pageRect();
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 125 void drawElementTitle(GraphicsContext& context, Node* node, const IntRect& boundingBox, const IntRect& anchorBox, const FloatRect& overlayRect, WebCore::Settings* settings)
231 FloatRect overlayRect = view->visibleContentRect();
259 FloatQuad absContentQuad = renderBox->localToAbsoluteQuad(FloatRect(contentBox));
260 FloatQuad absPaddingQuad = renderBox->localToAbsoluteQuad(FloatRect(paddingBox));
261 FloatQuad absBorderQuad = renderBox->localToAbsoluteQuad(FloatRect(borderBox));
262 FloatQuad absMarginQuad = renderBox->localToAbsoluteQuad(FloatRect(marginBox));
  /external/webkit/Source/WebCore/platform/graphics/android/
ImageAndroid.cpp 31 #include "FloatRect.h"
158 static void round(SkIRect* dst, const WebCore::FloatRect& src)
166 static void round_scaled(SkIRect* dst, const WebCore::FloatRect& src,
188 void BitmapImage::draw(GraphicsContext* ctxt, const FloatRect& dstRect,
189 const FloatRect& srcRect, ColorSpace,
251 void Image::drawPattern(GraphicsContext* ctxt, const FloatRect& srcRect,
254 CompositeOperator compositeOp, const FloatRect& destRect)
PathAndroid.cpp 30 #include "FloatRect.h"
113 FloatRect Path::boundingRect() const
116 return FloatRect( SkScalarToFloat(r.fLeft),
218 void Path::addRect(const FloatRect& rect)
223 void Path::addEllipse(const FloatRect& rect)
288 FloatRect Path::strokeBoundingRect(StrokeStyleApplier* applier) const
301 FloatRect r = boundingPath.getBounds();
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.cpp 32 #include "FloatRect.h"
273 AffineTransform makeMapBetweenRects(const FloatRect& source, const FloatRect& dest)
306 return enclosingIntRect(mapRect(FloatRect(rect)));
309 FloatRect AffineTransform::mapRect(const FloatRect& rect) const
312 FloatRect mappedRect(rect);
  /external/webkit/Source/WebCore/page/chromium/
FrameChromium.cpp 30 #include "FloatRect.h"
88 buffer->context()->clip(FloatRect(0, 0, paintingRect.maxX(), paintingRect.maxY()));
111 buffer->context()->clip(FloatRect(0, 0, paintingRect.maxX(), paintingRect.maxY()));
  /external/webkit/Source/WebCore/platform/graphics/
FloatQuad.cpp 77 FloatRect FloatQuad::boundingBox() const
85 return FloatRect(left, top, right - left, bottom - top);
FloatQuad.h 33 #include "FloatRect.h"
55 FloatQuad(const FloatRect& inRect)
77 // Tests whether this quad can be losslessly represented by a FloatRect,
80 // corresponding FloatRect can be retrieved with boundingBox().
91 FloatRect boundingBox() const;
GraphicsContext.cpp 374 drawImage(image, styleColorSpace, FloatRect(dest), srcRect, op, useLowQualityScale);
443 void GraphicsContext::drawImage(Image* image, ColorSpace styleColorSpace, const FloatRect& dest, const FloatRect& src, CompositeOperator op, bool useLowQualityScale)
467 image->draw(this, FloatRect(dest.location(), FloatSize(tw, th)), FloatRect(src.location(), FloatSize(tsw, tsh)), styleColorSpace, op);
470 image->draw(this, FloatRect(dest.location(), FloatSize(tw, th)), FloatRect(src.location(), FloatSize(tsw, tsh)), styleColorSpace, op);
524 drawImageBuffer(image, styleColorSpace, FloatRect(dest), srcRect, op, useLowQualityScale);
527 void GraphicsContext::drawImageBuffer(ImageBuffer* image, ColorSpace styleColorSpace, const FloatRect& dest, const FloatRect& src, CompositeOperator op, bool useLowQualityScale
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/freetype/
SimpleFontDataFreeType.cpp 36 #include "FloatRect.h"
141 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const
143 return FloatRect();
  /external/webkit/Source/WebCore/platform/graphics/pango/
SimpleFontDataPango.cpp 37 #include "FloatRect.h"
143 FloatRect SimpleFontData::platformBoundsForGlyph(Glyph) const
145 return FloatRect();
  /external/webkit/Source/WebCore/platform/graphics/skia/
PlatformContextSkia.h 97 void beginLayerClippedToImage(const FloatRect&, const ImageBuffer*);
199 void applyClipFromImage(const FloatRect&, const SkBitmap&);
  /external/webkit/Source/WebCore/rendering/
RenderInline.cpp 474 rects.append(enclosingIntRect(FloatRect(tx + curr->x(), ty + curr->y(), curr->width(), curr->height())));
504 FloatRect result;
506 result = FloatRect(offset.width() + currBox->inlineBoxWrapper()->x() - currBox->marginLeft(), offset.height() + logicalTop, currBox->width() + currBox->marginLeft() + currBox->marginRight(), logicalHeight);
508 result = FloatRect(offset.width() + logicalTop, offset.height() + currBox->inlineBoxWrapper()->y() - currBox->marginTop(), logicalHeight, currBox->height() + currBox->marginTop() + currBox->marginBottom());
521 FloatRect result;
523 result = FloatRect(offset.width() + childLine->x() - childLine->marginLogicalLeft(),
528 result = FloatRect(offset.width() + logicalTop,
541 FloatRect result;
543 result = FloatRect(offset.width() + childText->x(), offset.height() + logicalTop, childText->logicalWidth(), logicalHeight);
545 result = FloatRect(offset.width() + logicalTop, offset.height() + childText->y(), logicalHeight, childText->logicalWi (…)
    [all...]
  /external/webkit/Source/WebCore/css/
CSSCanvasValue.cpp 47 void CSSCanvasValue::canvasChanged(HTMLCanvasElement*, const FloatRect& changedRect)

Completed in 328 milliseconds

1 2 3 4 5 6 7 891011>>