Searched refs:m_coord (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/bmp/
H A DBMPImageReader.h173 // |numPixels| is ignored. Expects |m_coord| to point at the
189 return m_isTopDown ? ((m_coord.y() + numRows) >= m_parent->size().height()) : ((m_coord.y() - numRows) < 0);
199 const int offset = m_coord.x() * bytesPerPixel;
252 m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue, alpha);
253 m_coord.move(1, 0);
266 while (m_coord.x() < endCoord)
339 IntPoint m_coord; member in class:WebCore::BMPImageReader
H A DBMPImageReader.cpp93 m_coord.setY(m_parent->size().height() - 1);
110 m_coord.setX(0);
111 m_coord.setY(m_isTopDown ? 0 : (m_parent->size().height() - 1));
543 if (m_coord.x() < m_parent->size().width())
552 if ((m_coord.x() < m_parent->size().width()) || (m_isTopDown ? (m_coord.y() < (m_parent->size().height() - 1)) : (m_coord.y() > 0)))
568 if (((m_coord.x() + dx) > m_parent->size().width()) || pastEndOfImage(dy))
572 m_coord.move(dx, m_isTopDown ? dy : -dy);
599 const int endX = std::min(m_coord
[all...]

Completed in 28 milliseconds