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

  /external/chromium/base/gfx/
point.cc 5 #include "base/gfx/point.h"
13 namespace gfx { namespace
52 } // namespace gfx
54 std::ostream& operator<<(std::ostream& out, const gfx::Point& p) {
size.cc 5 #include "base/gfx/size.h"
17 namespace gfx { namespace
66 } // namespace gfx
68 std::ostream& operator<<(std::ostream& out, const gfx::Size& s) {
size.h 18 namespace gfx { namespace
79 } // namespace gfx
81 std::ostream& operator<<(std::ostream& out, const gfx::Size& s);
point.h 19 namespace gfx { namespace
76 } // namespace gfx
78 std::ostream& operator<<(std::ostream& out, const gfx::Point& p);
rect.h 17 #include "base/gfx/point.h"
18 #include "base/gfx/size.h"
26 namespace gfx { namespace
40 Rect(const gfx::Point& origin, const gfx::Size& size);
64 const gfx::Point& origin() const { return origin_; }
65 void set_origin(const gfx::Point& origin) { origin_ = origin; }
67 const gfx::Size& size() const { return size_; }
68 void set_size(const gfx::Size& size) { size_ = size; }
85 void Offset(const gfx::Point& point)
    [all...]
rect.cc 5 #include "base/gfx/rect.h"
33 namespace gfx { namespace
49 Rect::Rect(const gfx::Point& origin, const gfx::Size& size)
228 bool Rect::SharesEdgeWith(const gfx::Rect& rect) const {
235 } // namespace gfx
237 std::ostream& operator<<(std::ostream& out, const gfx::Rect& r) {
  /external/webkit/WebKit/chromium/public/
WebPoint.h 39 #include <base/gfx/rect.h>
79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
92 operator gfx::Point() const
94 return gfx::Point(x, y);
WebSize.h 39 #include <base/gfx/rect.h>
81 WebSize(const gfx::Size& s)
87 WebSize& operator=(const gfx::Size& s)
94 operator gfx::Size() const
96 return gfx::Size(width, height);
WebRect.h 39 #include <base/gfx/rect.h>
91 WebRect(const gfx::Rect& r)
99 WebRect& operator=(const gfx::Rect& r)
108 operator gfx::Rect() const
110 return gfx::Rect(x, y, width, height);

Completed in 4613 milliseconds