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

  /external/chromium_org/third_party/WebKit/public/platform/
WebRect.h 37 #include "core/platform/graphics/IntRect.h"
70 WebRect(const WebCore::IntRect& r)
78 WebRect& operator=(const WebCore::IntRect& r)
87 operator WebCore::IntRect() const
89 return WebCore::IntRect(x, y, width, height);
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntRect.cpp 27 #include "core/platform/graphics/IntRect.h"
40 IntRect::IntRect(const FloatRect& r)
46 IntRect::IntRect(const LayoutRect& r)
52 bool IntRect::intersects(const IntRect& other) const
60 bool IntRect::contains(const IntRect& other) const
66 void IntRect::intersect(const IntRect& other
    [all...]
IntRect.h 51 class IntRect {
54 IntRect() { }
55 IntRect(const IntPoint& location, const IntSize& size)
57 IntRect(int x, int y, int width, int height)
60 explicit IntRect(const FloatRect&); // don't do this implicitly since it's lossy
61 explicit IntRect(const LayoutRect&); // don't do this implicitly since it's lossy
124 bool intersects(const IntRect&) const;
125 bool contains(const IntRect&) const;
133 void intersect(const IntRect&);
134 void unite(const IntRect&)
    [all...]

Completed in 107 milliseconds