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

/external/webkit/Source/WebCore/platform/graphics/cg/
H A DFloatSizeCG.cpp36 FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height)
40 FloatSize::operator CGSize() const
H A DIntSizeCG.cpp35 IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height))
39 IntSize::operator CGSize() const
/external/webkit/Source/WebCore/platform/graphics/
H A DFloatSize.h35 typedef struct CGSize CGSize; typedef in typeref:struct:CGSize
40 typedef struct CGSize NSSize;
93 explicit FloatSize(const CGSize&); // don't do this implicitly since it's lossy
94 operator CGSize() const;
H A DIntSize.h30 typedef struct CGSize CGSize; typedef in typeref:struct:CGSize
35 typedef struct CGSize NSSize;
113 explicit IntSize(const CGSize&); // don't do this implicitly since it's lossy
114 operator CGSize() const;

Completed in 308 milliseconds