Searched defs:FloatRect (Results 1 - 6 of 6) 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:blink::FloatRect
38 FloatRect::operator CGRect() const
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFloatRect.h37 #include "platform/geometry/FloatRect.h"
71 WebFloatRect(const FloatRect& r)
79 WebFloatRect& operator=(const FloatRect& r)
88 operator FloatRect() const
90 return FloatRect(x, y, width, height);
/external/chromium_org/third_party/WebKit/Source/web/
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/ppapi/cpp/
H A Drect.h401 class FloatRect { class in namespace:pp
406 FloatRect() { function in class:pp::FloatRect
414 /// converting the <code>PP_FloatRect</code> to a <code>FloatRect</code>. This
418 FloatRect(const PP_FloatRect& rect) { // Implicit. function in class:pp::FloatRect
426 /// converting them to a <code>FloatRect</code> in the upper-left starting
431 FloatRect(float w, float h) { function in class:pp::FloatRect
446 FloatRect(float x, float y, float w, float h) { function in class:pp::FloatRect
454 /// <code>FloatSize</code> to a <code>FloatRect</code> in the upper-left
458 explicit FloatRect(const FloatSize& s) { function in class:pp::FloatRect
472 FloatRect(cons function in class:pp::FloatRect
[all...]
/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:blink::FloatRect
45 FloatRect::FloatRect(const LayoutRect& r) : m_location(r.location()), m_size(r.size()) function in class:blink::FloatRect
49 FloatRect::FloatRect(const SkRect& r) : m_location(r.fLeft, r.fTop), m_size(r.width(), r.height()) function in class:blink::FloatRect
53 FloatRect FloatRect::narrowPrecision(double x, double y, double width, double height)
55 return FloatRect(narrowPrecisionToFloa
[all...]
H A DFloatRect.h47 class PLATFORM_EXPORT FloatRect { class in namespace:blink
54 FloatRect() { } function in class:blink::FloatRect
55 FloatRect(const FloatPoint& location, const FloatSize& size) function in class:blink::FloatRect
57 FloatRect(float x, float y, float width, float height) function in class:blink::FloatRect
59 FloatRect(const IntRect&);
60 FloatRect(const LayoutRect&);
61 FloatRect(const SkRect&);
63 static FloatRect narrowPrecision(double x, double y, double width, double height);
126 bool intersects(const FloatRect&) const;
127 bool contains(const FloatRect
[all...]

Completed in 1440 milliseconds