Home | History | Annotate | Download | only in chromium

Lines Matching refs:m_paintRect

1215     m_paintRect = WebRect();
1454 // m_paintRect = m_paintRect U rect
1457 if (m_paintRect.isEmpty()) {
1458 m_paintRect = rect;
1461 int left = min(m_paintRect.x, rect.x);
1462 int top = min(m_paintRect.y, rect.y);
1463 int right = max(m_paintRect.x + m_paintRect.width, rect.x + rect.width);
1464 int bottom = max(m_paintRect.y + m_paintRect.height, rect.y + rect.height);
1465 m_paintRect = WebRect(left, top, right - left, bottom - top);
1497 // m_paintRect = intersect(m_paintRect , clientRect)
1498 int left = max(m_paintRect.x, clientRect.x);
1499 int top = max(m_paintRect.y, clientRect.y);
1500 int right = min(m_paintRect.x + m_paintRect.width, clientRect.x + clientRect.width);
1501 int bottom = min(m_paintRect.y + m_paintRect.height, clientRect.y + clientRect.height);
1503 m_paintRect = WebRect();
1505 m_paintRect = WebRect(left, top, right - left, bottom - top);
1507 if (m_paintRect.isEmpty())
1509 WebRect rect(m_paintRect);
1510 m_paintRect = WebRect();
1513 ASSERT(m_paintRect.isEmpty());