Searched defs:CGPoint (Results 1 - 4 of 4) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DFloatPointCG.cpp36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y)
40 FloatPoint::operator CGPoint() const
H A DIntPointCG.cpp35 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/
H A DFloatPoint.h35 typedef struct CGPoint CGPoint; typedef in typeref:struct:CGPoint
40 typedef struct CGPoint NSPoint;
113 FloatPoint(const CGPoint&);
114 operator CGPoint() const;
H A DIntPoint.h36 typedef struct CGPoint CGPoint; typedef in typeref:struct:CGPoint
42 typedef struct CGPoint NSPoint;
118 explicit IntPoint(const CGPoint&); // don't do this implicitly since it's lossy
119 operator CGPoint() const;

Completed in 111 milliseconds