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

/external/webkit/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/WebCore/platform/graphics/
H A DFloatPoint.h36 typedef struct CGPoint CGPoint; typedef in typeref:struct:CGPoint
41 typedef struct CGPoint NSPoint;
84 FloatPoint(const CGPoint&);
85 operator CGPoint() const;
H A DIntPoint.h37 typedef struct CGPoint CGPoint; typedef in typeref:struct:CGPoint
43 typedef struct CGPoint NSPoint;
110 explicit IntPoint(const CGPoint&); // don't do this implicitly since it's lossy
111 operator CGPoint() const;

Completed in 64 milliseconds