HomeSort by relevance Sort by last modified time
    Searched refs:FloatSize (Results 26 - 50 of 122) sorted by null

12 3 4 5

  /external/webkit/WebCore/platform/graphics/
FloatRect.h 73 FloatRect(const FloatPoint& location, const FloatSize& size)
76 : m_location(FloatPoint(x, y)), m_size(FloatSize(width, height)) { }
82 FloatSize size() const { return m_size; }
85 void setSize(const FloatSize& size) { m_size = size; }
102 void move(const FloatSize& delta) { m_location += delta; }
167 FloatSize m_size;
FloatQuad.h 97 void move(const FloatSize& offset)
120 inline FloatQuad& operator+=(FloatQuad& a, const FloatSize& b)
126 inline FloatQuad& operator-=(FloatQuad& a, const FloatSize& b)
Image.cpp 89 static inline FloatSize calculatePatternScale(const FloatRect& dstRect, const FloatRect& srcRect, Image::TileRule hRule, Image::TileRule vRule)
103 return FloatSize(scaleX, scaleY);
107 void Image::drawTiled(GraphicsContext* ctxt, const FloatRect& destRect, const FloatPoint& srcPoint, const FloatSize& scaledTileSize, ColorSpace styleColorSpace, CompositeOperator op)
114 FloatSize intrinsicTileSize = size();
120 FloatSize scale(scaledTileSize.width() / intrinsicTileSize.width(),
160 FloatSize scale = calculatePatternScale(dstRect, srcRect, hRule, vRule);
Path.cpp 71 FloatSize change = traversalState.m_current - traversalState.m_previous;
111 Path Path::createRoundedRectangle(const FloatRect& rectangle, const FloatSize& roundingRadii)
161 Path Path::createRoundedRectangle(const FloatRect& rectangle, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius)
Image.h 73 class FloatSize;
170 void drawTiled(GraphicsContext*, const FloatRect& dstRect, const FloatPoint& srcPoint, const FloatSize& tileSize, ColorSpace styleColorSpace, CompositeOperator);
GeneratedImage.cpp 44 context->scale(FloatSize(dstRect.width() / srcRect.width(), dstRect.height() / srcRect.height()));
  /external/webkit/WebCore/svg/graphics/
SVGResourceFilter.h 56 void setFilterResolution(const FloatSize& filterResSize) { m_filterResSize = filterResSize; }
77 bool fitsInMaximumImageSize(const FloatSize&);
98 FloatSize m_filterResSize;
  /external/webkit/WebCore/rendering/
RenderSVGTransformableContainer.cpp 53 FloatSize translation = static_cast<SVGShadowTreeContainerElement*>(node())->containerTranslation();
SVGRenderTreeAsText.h 38 class FloatSize;
65 TextStream& operator<<(TextStream&, const FloatSize&);
SVGMarkerData.h 52 FloatSize inslopeChange = m_inslopePoints[1] - m_inslopePoints[0];
53 FloatSize outslopeChange = m_outslopePoints[1] - m_outslopePoints[0];
RenderSVGRoot.h 85 FloatSize m_viewportSize;
  /external/webkit/WebCore/platform/
DragImage.cpp 55 return resizeRatio > 0.0f ? scaleDragImage(image, FloatSize(resizeRatio, resizeRatio)) : image;
65 return scaleDragImage(image, FloatSize(scalex, scaley));
PlatformWheelEvent.h 60 class FloatSize;
135 PlatformWheelEvent(HWND, const FloatSize& delta, const FloatPoint& location);
DragImage.h 30 #include "FloatSize.h"
93 DragImageRef scaleDragImage(DragImageRef, FloatSize scale);
  /external/webkit/WebCore/platform/graphics/cairo/
GraphicsContextPlatformPrivateCairo.h 71 void scale(const FloatSize&);
86 void scale(const FloatSize&) {}
  /external/webkit/WebCore/page/
PrintContext.cpp 80 computePageRectsWithPageSize(FloatSize(pageWidth, pageHeight), userScaleFactor);
83 void PrintContext::computePageRectsWithPageSize(const FloatSize& pageSizeInPixels, float userScaleFactor)
142 ctx.scale(FloatSize(scale, scale));
164 int PrintContext::pageNumberForElement(Element* element, const FloatSize& pageSizeInPixels)
191 int PrintContext::numberOfPages(Frame* frame, const FloatSize& pageSizeInPixels)
  /external/webkit/WebCore/platform/wx/wxcode/mac/carbon/
non-kerned-drawing.cpp 27 #include "FloatSize.h"
92 const FloatSize* advanceSizes = static_cast<const FloatSize*>(glyphBuffer.advances(from));
107 FloatSize fsize = advanceSizes[i];
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.h 38 void move(const FloatSize& offset)
53 void move(const FloatSize& offset);
115 void move(const FloatSize& offset);
150 void translate(const FloatSize& size);
  /external/webkit/WebCore/platform/gtk/
DragImageGtk.cpp 41 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale)
  /external/webkit/WebCore/svg/
SVGAnimateMotionElement.h 57 FloatSize m_animatedTranslation;
SVGTransform.cpp 25 #include "FloatSize.h"
116 FloatSize SVGTransform::scale() const
118 return FloatSize::narrowPrecision(m_matrix.a(), m_matrix.d());
SVGTransformDistance.cpp 28 #include "FloatSize.h"
68 FloatSize centerDistance = toSVGTransform.rotationCenter() - fromSVGTransform.rotationCenter();
76 FloatSize translationDistance = toSVGTransform.translate() - fromSVGTransform.translate();
147 FloatSize scale = first.scale() + second.scale();
220 translation += FloatSize::narrowPrecision(m_transform.e(), m_transform.f());
226 FloatSize scale = transform.scale();
227 scale += FloatSize::narrowPrecision(m_transform.a(), m_transform.d());
  /external/webkit/WebCore/html/
HTMLCanvasElement.h 44 class FloatSize;
95 IntSize convertLogicalToDevice(const FloatSize&) const;
HTMLCanvasElement.cpp 287 IntSize HTMLCanvasElement::convertLogicalToDevice(const FloatSize& logicalSize) const
338 FloatSize unscaledSize(width(), height());
348 m_imageBuffer->context()->scale(FloatSize(size.width() / unscaledSize.width(), size.height() / unscaledSize.height()));
367 FloatSize unscaledSize(width(), height());
  /external/webkit/WebCore/platform/graphics/qt/
GraphicsLayerQt.h 54 virtual void setSize(const FloatSize& size);

Completed in 885 milliseconds

12 3 4 5