HomeSort by relevance Sort by last modified time
    Searched refs:m_coord (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebCore/platform/image-decoders/bmp/
BMPImageReader.h 171 // |numPixels| is ignored. Expects |m_coord| to point at the
183 ? ((m_coord.y() + numRows) >= m_parent->size().height())
184 : ((m_coord.y() - numRows) < 0);
194 const int offset = m_coord.x() * bytesPerPixel;
254 m_buffer->setRGBA(m_coord.x(), m_coord.y(), red, green, blue,
256 m_coord.move(1, 0);
269 while (m_coord.x() < endCoord)
347 IntPoint m_coord; member in class:WebCore::BMPImageReader
BMPImageReader.cpp 98 m_coord.setY(m_parent->size().height() - 1);
116 m_coord.setX(0);
117 m_coord.setY(m_isTopDown ? 0 : (m_parent->size().height() - 1));
584 if (m_coord.x() < m_parent->size().width())
593 if ((m_coord.x() < m_parent->size().width())
595 ? (m_coord.y() < (m_parent->size().height() - 1))
596 : (m_coord.y() > 0)))
612 if (((m_coord.x() + dx) > m_parent->size().width()) ||
617 m_coord.move(dx, m_isTopDown ? dy : -dy);
641 std::min(m_coord.x() + count, m_parent->size().width())
    [all...]

Completed in 35 milliseconds