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

1 2 3 4 5

  /external/webkit/WebCore/platform/graphics/
FloatSize.cpp 28 #include "FloatSize.h"
35 FloatSize::FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height())
39 FloatSize FloatSize::narrowPrecision(double width, double height)
41 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
FloatSize.h 51 class FloatSize {
53 FloatSize() : m_width(0), m_height(0) { }
54 FloatSize(float width, float height) : m_width(width), m_height(height) { }
55 FloatSize(const IntSize&);
57 static FloatSize narrowPrecision(double width, double height);
67 FloatSize expandedTo(const FloatSize& other) const
69 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
73 FloatSize shrunkTo(const FloatSize& other) cons
    [all...]
Path.h 73 class FloatSize;
134 void translate(const FloatSize&);
140 static Path createRoundedRectangle(const FloatRect&, const FloatSize& roundingRadii);
141 static Path createRoundedRectangle(const FloatRect&, const FloatSize& topLeftRadius, const FloatSize& topRightRadius, const FloatSize& bottomLeftRadius, const FloatSize& bottomRightRadius);
FloatPoint.h 30 #include "FloatSize.h"
117 inline FloatPoint& operator+=(FloatPoint& a, const FloatSize& b)
123 inline FloatPoint& operator-=(FloatPoint& a, const FloatSize& b)
129 inline FloatPoint operator+(const FloatPoint& a, const FloatSize& b)
134 inline FloatSize operator-(const FloatPoint& a, const FloatPoint& b)
136 return FloatSize(a.x() - b.x(), a.y() - b.y());
139 inline FloatPoint operator-(const FloatPoint& a, const FloatSize& b)
GlyphBuffer.h 33 #include "FloatSize.h"
59 // CG uses CGSize instead of FloatSize so that the result of advances()
68 typedef FloatSize GlyphBufferAdvance;
108 FloatSize offset = m_offsets[index1];
134 FloatSize offsetAt(int index) const
140 return FloatSize();
144 void add(Glyph glyph, const SimpleFontData* font, float width, const FloatSize* offset = 0)
162 m_advances.append(FloatSize(width, 0));
169 m_offsets.append(FloatSize());
196 Vector<FloatSize, 2048> m_offsets
    [all...]
FloatQuad.cpp 49 inline float dot(const FloatSize& a, const FloatSize& b)
57 FloatSize v0 = t3 - t1;
58 FloatSize v1 = t2 - t1;
59 FloatSize v2 = p - t1;
  /external/webkit/WebCore/platform/graphics/mac/
FloatSizeMac.mm 28 #include "FloatSize.h"
34 FloatSize::FloatSize(const NSSize& s) : m_width(s.width), m_height(s.height)
38 FloatSize::operator NSSize() const
  /external/webkit/WebCore/platform/graphics/cg/
FloatSizeCG.cpp 28 #include "FloatSize.h"
36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 FloatSize::operator CGSize() const
GraphicsContextPlatformPrivateCG.h 60 void scale(const FloatSize&) {}
75 void scale(const FloatSize&);
  /external/webkit/WebCore/svg/graphics/filters/
SVGFEConvolveMatrix.h 28 #include "FloatSize.h"
43 static PassRefPtr<FEConvolveMatrix> create(FilterEffect*, FilterEffect*, const FloatSize&,
44 const float&, const float&, const FloatSize&, EdgeModeType, const FloatPoint&,
47 FloatSize kernelSize() const;
48 void setKernelSize(FloatSize);
59 FloatSize targetOffset() const;
60 void setTargetOffset(FloatSize);
77 FEConvolveMatrix(FilterEffect*, FilterEffect*, const FloatSize&, const float&, const float&,
78 const FloatSize&, EdgeModeType, const FloatPoint&, bool, const Vector<float>&);
82 FloatSize m_kernelSize
    [all...]
SVGFEConvolveMatrix.cpp 31 FEConvolveMatrix::FEConvolveMatrix(FilterEffect* in, FilterEffect* in2, const FloatSize& kernelSize,
32 const float& divisor, const float& bias, const FloatSize& targetOffset, EdgeModeType edgeMode,
48 PassRefPtr<FEConvolveMatrix> FEConvolveMatrix::create(FilterEffect* in, FilterEffect* in2, const FloatSize& kernelSize,
49 const float& divisor, const float& bias, const FloatSize& targetOffset, EdgeModeType edgeMode,
57 FloatSize FEConvolveMatrix::kernelSize() const
62 void FEConvolveMatrix::setKernelSize(FloatSize kernelSize)
97 FloatSize FEConvolveMatrix::targetOffset() const
102 void FEConvolveMatrix::setTargetOffset(FloatSize targetOffset)
SVGFilter.h 27 #include "FloatSize.h"
44 virtual FloatSize maxImageSize() const { return m_maxImageSize; }
50 FloatSize m_maxImageSize;
  /external/webkit/WebCore/page/
PrintContext.h 31 class FloatSize;
55 static int pageNumberForElement(Element*, const FloatSize& pageSizeInPixels);
56 static int numberOfPages(Frame*, const FloatSize& pageSizeInPixels);
59 void computePageRectsWithPageSize(const FloatSize& pageSizeInPixels, float userScaleFactor);
  /external/webkit/WebCore/platform/graphics/filters/
Filter.h 25 #include "FloatSize.h"
44 FloatSize filterResolution() const { return m_filterResolution; }
45 void setFilterResolution(const FloatSize& filterResolution) { m_filterResolution = filterResolution; }
53 virtual FloatSize maxImageSize() const = 0;
58 FloatSize m_filterResolution;
ImageBufferFilter.h 28 #include "FloatSize.h"
46 virtual FloatSize maxImageSize() const { return FloatSize(); }
ImageBufferFilter.cpp 26 #include "FloatSize.h"
33 setFilterResolution(FloatSize(1.f, 1.f));
  /external/webkit/WebCore/rendering/
SVGShadowTreeElements.h 29 class FloatSize;
38 FloatSize containerTranslation() const;
SVGShadowTreeElements.cpp 26 #include "FloatSize.h"
42 FloatSize SVGShadowTreeContainerElement::containerTranslation() const
44 return FloatSize(m_xOffset.value(this), m_yOffset.value(this));
  /external/webkit/WebCore/platform/graphics/wx/
FloatRectWx.cpp 37 , m_size(FloatSize(r.m_width, r.m_height))
  /external/webkit/WebCore/platform/haiku/
DragImageHaiku.cpp 49 DragImageRef scaleDragImage(DragImageRef image, FloatSize)
  /external/webkit/WebCore/platform/qt/
DragImageQt.cpp 43 DragImageRef scaleDragImage(DragImageRef image, FloatSize)
  /external/webkit/WebCore/platform/wince/
DragImageWince.cpp 43 DragImageRef scaleDragImage(DragImageRef, FloatSize)
  /external/webkit/WebCore/platform/wx/
DragImageWx.cpp 29 #include "FloatSize.h"
43 DragImageRef scaleDragImage(DragImageRef image, FloatSize)
  /external/webkit/WebCore/svg/
SVGTransform.h 31 class FloatSize;
67 FloatSize scale() const;
  /external/webkit/WebCore/platform/chromium/
DragImageChromium.cpp 49 DragImageRef scaleDragImage(DragImageRef image, FloatSize scale)

Completed in 1907 milliseconds

1 2 3 4 5