Searched defs:FloatSize (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatSizeCG.cpp28 #include "platform/geometry/FloatSize.h"
34 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height) function in class:WebCore::FloatSize
38 FloatSize::operator CGSize() const
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatSize.cpp28 #include "platform/geometry/FloatSize.h"
40 FloatSize::FloatSize(const LayoutSize& size) function in class:WebCore::FloatSize
46 float FloatSize::diagonalLength() const
51 bool FloatSize::isZero() const
56 bool FloatSize::isExpressibleAsIntSize() const
61 FloatSize FloatSize::narrowPrecision(double width, double height)
63 return FloatSize(narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
H A DFloatSize.h47 class PLATFORM_EXPORT FloatSize { class in namespace:WebCore
49 FloatSize() : m_width(0), m_height(0) { } function in class:WebCore::FloatSize
50 FloatSize(float width, float height) : m_width(width), m_height(height) { } function in class:WebCore::FloatSize
51 FloatSize(const IntSize& size) : m_width(size.width()), m_height(size.height()) { } function in class:WebCore::FloatSize
52 FloatSize(const LayoutSize&);
54 static FloatSize narrowPrecision(double width, double height);
82 FloatSize expandedTo(const FloatSize& other) const
84 return FloatSize(m_width > other.m_width ? m_width : other.m_width,
88 FloatSize shrunkT
[all...]
/external/chromium_org/ppapi/cpp/
H A Dsize.h149 class FloatSize { class in namespace:pp
153 FloatSize() { function in class:pp::FloatSize
159 /// converting the <code>PP_FloatSize</code> to a <code>FloatSize</code>.
163 FloatSize(const PP_FloatSize& s) { // Implicit. function in class:pp::FloatSize
170 /// converting them to a <code>FloatSize</code>.
174 FloatSize(float w, float h) { function in class:pp::FloatSize
181 ~FloatSize() {
184 /// PP_FloatSize() allows implicit conversion of a <code>FloatSize</code> to a
211 /// @return The value of width for this <code>FloatSize</code>.
229 /// @return The value of height for this <code>FloatSize</cod
[all...]
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatSize.h39 #include "platform/geometry/FloatSize.h"
67 WebFloatSize(const WebCore::FloatSize& s)
73 WebFloatSize& operator=(const WebCore::FloatSize& s)
80 operator WebCore::FloatSize() const
82 return WebCore::FloatSize(width, height);
/external/chromium_org/third_party/WebKit/Source/platform/scroll/
H A DScrollAnimator.h36 #include "platform/geometry/FloatSize.h"
100 virtual void notifyContentAreaScrolled(const FloatSize&) { } argument

Completed in 199 milliseconds