Home | History | Annotate | Download | only in android

Lines Matching refs:rect

403          FloatRect rect = m_invalidatedRects[i];
404 if (repaint(rect))
417 FloatRect rect(0, 0, m_size.width(), m_size.height());
418 setNeedsDisplayInRect(rect);
448 bool GraphicsLayerAndroid::repaint(const FloatRect& rect)
451 this, rect.x(), rect.y(), rect.width(), rect.height(),
461 if ((rect.width() > 0.5) && (rect.height() > 0.5)) {
462 IntRect r((int)rect.x(), (int)rect.y(),
463 (int)rect.width(), (int)rect.height());
476 this, rect.x(), rect.y(), rect.width(),
477 rect.height(), m_size.width(), m_size.height(),
488 void GraphicsLayerAndroid::setNeedsDisplayInRect(const FloatRect& rect)
493 FloatRect childrenRect(m_position.x() + m_translateX + rect.x(),
494 m_position.y() + m_translateY + rect.y(),
495 rect.width(), rect.height());
501 this, rect.x(), rect.y(), rect.width(), rect.height());
507 if (m_invalidatedRects[i].contains(rect))
513 m_needsRepaint, rect.x(), rect.y(), rect.width(), rect.height());
517 m_invalidatedRects.append(rect);
519 m_invalidatedRects[0].unite(rect);