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

  /external/chromium_org/chrome/test/chromedriver/
basic_types.cc 7 WebPoint::WebPoint() : x(0), y(0) {}
9 WebPoint::WebPoint(int x, int y) : x(x), y(y) {}
11 WebPoint::~WebPoint() {}
13 void WebPoint::Offset(int x_, int y_) {
29 WebRect::WebRect(const WebPoint& origin, const WebSize& size)
basic_types.h 8 struct WebPoint {
9 WebPoint();
10 WebPoint(int x, int y);
11 ~WebPoint();
31 WebRect(const WebPoint& origin, const WebSize& size);
39 WebPoint origin;
  /external/chromium_org/third_party/WebKit/public/platform/
WebPoint.h 44 struct WebPoint {
48 WebPoint()
54 WebPoint(int x, int y)
61 WebPoint(const IntPoint& p)
67 WebPoint& operator=(const IntPoint& p)
79 WebPoint(const gfx::Point& p)
85 WebPoint& operator=(const gfx::Point& p)
99 inline bool operator==(const WebPoint& a, const WebPoint& b)
104 inline bool operator!=(const WebPoint& a, const WebPoint& b
    [all...]

Completed in 450 milliseconds