HomeSort by relevance Sort by last modified time
    Searched defs:FloatRect (Results 1 - 10 of 10) sorted by null

  /external/webkit/Source/WebCore/platform/graphics/cg/
FloatRectCG.cpp 28 #include "FloatRect.h"
36 FloatRect::FloatRect(const CGRect& r) : m_location(r.origin), m_size(r.size)
40 FloatRect::operator CGRect() const
  /external/webkit/Source/WebCore/platform/graphics/haiku/
FloatRectHaiku.cpp 30 #include "FloatRect.h"
37 FloatRect::FloatRect(const BRect& rect)
43 FloatRect::operator BRect() const
  /external/webkit/Source/WebCore/platform/graphics/wx/
FloatRectWx.cpp 27 #include "FloatRect.h"
35 FloatRect::FloatRect(const wxRect2DDouble& r)
41 FloatRect::operator wxRect2DDouble() const
  /external/webkit/Source/WebCore/platform/graphics/cairo/
FloatRectCairo.cpp 27 #include "FloatRect.h"
33 FloatRect::FloatRect(const cairo_rectangle_t& r)
39 FloatRect::operator cairo_rectangle_t() const
  /external/webkit/Source/WebCore/platform/graphics/skia/
FloatRectSkia.cpp 32 #include "FloatRect.h"
38 FloatRect::FloatRect(const SkRect& r)
44 FloatRect::operator SkRect() const
  /external/webkit/Source/WebCore/platform/graphics/qt/
FloatRectQt.cpp 29 #include "FloatRect.h"
35 FloatRect::FloatRect(const QRectF& r)
42 FloatRect::operator QRectF() const
47 FloatRect FloatRect::normalized() const
49 FloatRect normalizedRect = *this;
  /external/webkit/Source/WebKit/chromium/public/
WebFloatRect.h 37 #include "FloatRect.h"
67 WebFloatRect(const WebCore::FloatRect& r)
75 WebFloatRect& operator=(const WebCore::FloatRect& r)
84 operator WebCore::FloatRect() const
86 return WebCore::FloatRect(x, y, width, height);
  /external/webkit/Source/WebCore/platform/graphics/openvg/
VGUtils.cpp 24 #include "FloatRect.h"
105 VGRect::VGRect(const FloatRect& rect)
113 VGRect::operator FloatRect() const
115 return FloatRect(m_data[0], m_data[1], m_data[2], m_data[3]);
118 FloatRect::operator VGRect() const
  /external/webkit/Source/WebCore/platform/graphics/
FloatRect.cpp 28 #include "FloatRect.h"
41 FloatRect::FloatRect(const IntRect& r) : m_location(r.location()), m_size(r.size())
45 FloatRect FloatRect::narrowPrecision(double x, double y, double width, double height)
47 return FloatRect(narrowPrecisionToFloat(x), narrowPrecisionToFloat(y), narrowPrecisionToFloat(width), narrowPrecisionToFloat(height));
50 bool FloatRect::intersects(const FloatRect& other) const
58 bool FloatRect::contains(const FloatRect& other) cons
    [all...]
FloatRect.h 74 class FloatRect {
76 FloatRect() { }
77 FloatRect(const FloatPoint& location, const FloatSize& size)
79 FloatRect(float x, float y, float width, float height)
81 FloatRect(const IntRect&);
83 static FloatRect narrowPrecision(double x, double y, double width, double height);
110 bool intersects(const FloatRect&) const;
111 bool contains(const FloatRect&) const;
113 void intersect(const FloatRect&);
114 void unite(const FloatRect&)
    [all...]

Completed in 214 milliseconds