CGSize 50 Source/platform/fonts/GlyphBuffer.h struct GlyphBufferAdvance : CGSize { CGSize 52 Source/platform/fonts/GlyphBuffer.h GlyphBufferAdvance(CGSize size) : CGSize(size) CGSize 56 Source/platform/fonts/GlyphBuffer.h void setWidth(CGFloat width) { this->CGSize::width = width; } CGSize 57 Source/platform/fonts/GlyphBuffer.h CGFloat width() const { return this->CGSize::width; } CGSize 58 Source/platform/fonts/GlyphBuffer.h CGFloat height() const { return this->CGSize::height; } CGSize 103 Source/platform/fonts/GlyphBuffer.h CGSize advance = { width, 0 }; CGSize 467 Source/platform/fonts/mac/ComplexTextController.cpp CGSize adjustedAdvance = m_adjustedAdvances[k]; CGSize 525 Source/platform/fonts/mac/ComplexTextController.cpp const CGSize* advances = complexTextRun.advances(); CGSize 557 Source/platform/fonts/mac/ComplexTextController.cpp CGSize advance = treatAsSpace ? CGSizeMake(spaceWidth, advances[i].height) : advances[i]; CGSize 97 Source/platform/fonts/mac/ComplexTextController.h const CGSize* advances() const { return m_advances; } CGSize 118 Source/platform/fonts/mac/ComplexTextController.h Vector<CGSize, 64> m_advancesVector; CGSize 119 Source/platform/fonts/mac/ComplexTextController.h const CGSize* m_advances; CGSize 153 Source/platform/fonts/mac/ComplexTextController.h Vector<CGSize, 256> m_adjustedAdvances; CGSize 35 Source/platform/geometry/FloatSize.h typedef struct CGSize CGSize; CGSize 106 Source/platform/geometry/FloatSize.h explicit FloatSize(const CGSize&); // don't do this implicitly since it's lossy CGSize 107 Source/platform/geometry/FloatSize.h operator CGSize() const; CGSize 33 Source/platform/geometry/IntSize.h typedef struct CGSize CGSize; CGSize 116 Source/platform/geometry/IntSize.h explicit IntSize(const CGSize&); // don't do this implicitly since it's lossy CGSize 117 Source/platform/geometry/IntSize.h operator CGSize() const; CGSize 34 Source/platform/geometry/cg/FloatSizeCG.cpp FloatSize::FloatSize(const CGSize& s) : m_width(s.width), m_height(s.height) CGSize 38 Source/platform/geometry/cg/FloatSizeCG.cpp FloatSize::operator CGSize() const CGSize 33 Source/platform/geometry/cg/IntSizeCG.cpp IntSize::IntSize(const CGSize& s) : m_width(static_cast<int>(s.width)), m_height(static_cast<int>(s.height)) CGSize 37 Source/platform/geometry/cg/IntSizeCG.cpp IntSize::operator CGSize() const