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

  /external/webkit/Source/WebCore/platform/graphics/cg/
IntPointCG.cpp 27 #include "IntPoint.h"
35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y))
39 IntPoint::operator CGPoint() const
  /external/webkit/Source/WebCore/platform/graphics/haiku/
IntPointHaiku.cpp 29 #include "IntPoint.h"
36 IntPoint::IntPoint(const BPoint& point)
42 IntPoint::operator BPoint() const
  /external/webkit/Source/WebCore/platform/graphics/qt/
IntPointQt.cpp 29 #include "IntPoint.h"
35 IntPoint::IntPoint(const QPoint& p)
41 IntPoint::operator QPoint() const
  /external/webkit/Source/WebCore/platform/graphics/wx/
IntPointWx.cpp 27 #include "IntPoint.h"
34 IntPoint::IntPoint(const wxPoint& p)
40 IntPoint::operator wxPoint() const
  /external/webkit/Source/WebCore/platform/graphics/brew/
IntPointBrew.cpp 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const AEEPoint& point)
39 IntPoint::operator AEEPoint() const
  /external/webkit/Source/WebCore/platform/graphics/efl/
IntPointEfl.cpp 24 #include "IntPoint.h"
30 IntPoint::IntPoint(const Evas_Point& p)
36 IntPoint::operator Evas_Point() const // NOLINT
  /external/webkit/Source/WebCore/platform/graphics/gtk/
IntPointGtk.cpp 21 #include "IntPoint.h"
27 IntPoint::IntPoint(const GdkPoint& p)
33 IntPoint::operator GdkPoint() const
  /external/webkit/Source/WebCore/platform/graphics/skia/
IntPointSkia.cpp 32 #include "IntPoint.h"
38 IntPoint::IntPoint(const SkIPoint& p)
44 IntPoint::operator SkIPoint() const
50 IntPoint::operator SkPoint() const
  /external/webkit/Source/WebCore/platform/graphics/win/
IntPointWin.cpp 27 #include "IntPoint.h"
33 IntPoint::IntPoint(const POINT& p)
39 IntPoint::operator POINT() const
45 IntPoint::IntPoint(const POINTS& p)
51 IntPoint::operator POINTS() const
  /external/webkit/Source/WebKit/chromium/public/
WebPoint.h 37 #include "IntPoint.h"
61 WebPoint(const WebCore::IntPoint& p)
67 WebPoint& operator=(const WebCore::IntPoint& p)
74 operator WebCore::IntPoint() const
76 return WebCore::IntPoint(x, y);
  /external/webkit/Source/WebCore/platform/graphics/
IntPoint.h 78 class IntPoint {
80 IntPoint() : m_x(0), m_y(0) { }
81 IntPoint(int x, int y) : m_x(x), m_y(y) { }
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
84 static IntPoint zero() { return IntPoint(); }
95 IntPoint expandedTo(const IntPoint& other) const
97 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
101 IntPoint shrunkTo(const IntPoint& other) cons
    [all...]

Completed in 307 milliseconds