Home | History | Annotate | Download | only in chromium

Lines Matching defs:m_height

72         , m_height(0) {}
76 , m_height(image.m_height)
79 bool hasImage() const { return m_width > 0 && m_height > 0; }
81 int height() const { return m_height; }
95 if (!webkit_support::DecodePNG(source.get(), byteLength, &m_data, &m_width, &m_height)) {
119 if (!webkit_support::DecodePNG(&compressed[0], compressed.size(), &m_data, &m_width, &m_height)) {
128 m_width = m_height = 0;
136 ASSERT(y >= 0 && y < m_height);
143 ASSERT(y >= 0 && y < m_height);
150 int m_width, m_height;