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

  /external/webkit/Source/WebCore/platform/graphics/haiku/
IntRectHaiku.cpp 29 #include "IntRect.h"
36 IntRect::IntRect(const BRect& rect)
42 IntRect::operator BRect() const
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntRectQt.cpp 29 #include "IntRect.h"
35 IntRect::IntRect(const QRect& r)
41 IntRect::operator QRect() const
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntRectWx.cpp 27 #include "IntRect.h"
34 IntRect::IntRect(const wxRect& r)
40 IntRect::operator wxRect() const
  /external/webkit/Source/WebCore/platform/graphics/efl/
IntRectEfl.cpp 22 #include "IntRect.h"
28 IntRect::IntRect(const Eina_Rectangle& r)
34 IntRect::operator Eina_Rectangle() const
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IntRectGtk.cpp 21 #include "IntRect.h"
27 IntRect::IntRect(const GdkRectangle& r)
33 IntRect::operator GdkRectangle() const
  /external/webkit/Source/WebCore/platform/graphics/win/
IntRectWin.cpp 28 #include "IntRect.h"
34 IntRect::IntRect(const RECT& r)
39 IntRect::operator RECT() const
  /external/webkit/Source/WebCore/platform/graphics/skia/
IntRectSkia.cpp 32 #include "IntRect.h"
38 IntRect::operator SkIRect() const
44 IntRect::operator SkRect() const
51 IntRect::IntRect(const SkIRect& r)
  /external/webkit/Source/WebCore/platform/graphics/
IntRect.cpp 27 #include "IntRect.h"
37 IntRect::IntRect(const FloatRect& r)
43 bool IntRect::intersects(const IntRect& other) const
51 bool IntRect::contains(const IntRect& other) const
57 void IntRect::intersect(const IntRect& other)
78 void IntRect::unite(const IntRect& other
    [all...]
IntRect.h 76 class IntRect {
78 IntRect() { }
79 IntRect(const IntPoint& location, const IntSize& size)
81 IntRect(int x, int y, int width, int height)
84 explicit IntRect(const FloatRect& rect); // don't do this implicitly since it's lossy
141 bool intersects(const IntRect&) const;
142 bool contains(const IntRect&) const;
150 void intersect(const IntRect&);
151 void unite(const IntRect&);
152 void uniteIfNonZero(const IntRect&)
    [all...]
  /external/webkit/Source/WebCore/rendering/
GapRects.h 26 #include "IntRect.h"
31 const IntRect& left() const { return m_left; }
32 const IntRect& center() const { return m_center; }
33 const IntRect& right() const { return m_right; }
35 void uniteLeft(const IntRect& r) { m_left.unite(r); }
36 void uniteCenter(const IntRect& r) { m_center.unite(r); }
37 void uniteRight(const IntRect& r) { m_right.unite(r); }
40 operator IntRect() const
42 IntRect result = m_left;
55 IntRect m_left
    [all...]
  /external/webkit/Source/WebKit/chromium/public/
WebRect.h 37 #include "IntRect.h"
69 WebRect(const WebCore::IntRect& r)
77 WebRect& operator=(const WebCore::IntRect& r)
86 operator WebCore::IntRect() const
88 return WebCore::IntRect(x, y, width, height);

Completed in 138 milliseconds