Searched defs:FloatRect (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/geometry/cg/
H A DFloatRectCG.cpp28 #include "platform/geometry/FloatRect.h"
34 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size) function in class:WebCore::FloatRect
38 FloatRect::operator CGRect() const
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DPopupContainerTest.cpp79 const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
80 const FloatRect windowRect(0, 0, 512, 512);
86 static IntRect calculatePosition(const IntRect& initialRect, PopupContent* content, FloatRect windowRect = FloatRect(0, 0, 512, 512), bool isRTL = true) argument
89 const FloatRect screenRect(0, 0, screenMaxX, screenMaxY);
173 IntRect resultRect = calculatePosition(initialRect, &content, FloatRect(0, 0, screenMaxX, screenMaxY), false);
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatRect.h37 #include "platform/geometry/FloatRect.h"
71 WebFloatRect(const WebCore::FloatRect& r)
79 WebFloatRect& operator=(const WebCore::FloatRect& r)
88 operator WebCore::FloatRect() const
90 return WebCore::FloatRect(x, y, width, height);
/external/chromium_org/third_party/WebKit/Source/platform/geometry/
H A DFloatRect.cpp28 #include "platform/geometry/FloatRect.h"
41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size()) function in class:WebCore::FloatRect
45 FloatRect::FloatRect(const LayoutRect& r) : m_location(r.location()), m_size(r.size()) function in class:WebCore::FloatRect
49 FloatRect::FloatRect(const SkRect& r) : m_location(r.fLeft, r.fTop), m_size(r.width(), r.height()) function in class:WebCore::FloatRect
53 FloatRect FloatRect::narrowPrecision(double x, double y, double width, double height)
55 return FloatRect(narrowPrecisionToFloa
[all...]
H A DFloatRect.h50 class PLATFORM_EXPORT FloatRect { class in namespace:WebCore
57 FloatRect() { } function in class:WebCore::FloatRect
58 FloatRect(const FloatPoint& location, const FloatSize& size) function in class:WebCore::FloatRect
60 FloatRect(float x, float y, float width, float height) function in class:WebCore::FloatRect
62 FloatRect(const IntRect&);
63 FloatRect(const LayoutRect&);
64 FloatRect(const SkRect&);
66 static FloatRect narrowPrecision(double x, double y, double width, double height);
129 bool intersects(const FloatRect&) const;
130 bool contains(const FloatRect
[all...]

Completed in 134 milliseconds