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

  /cts/tests/tests/view/src/android/view/cts/
View_LayoutPositionTest.java 55 Rect vRect = new Rect();
64 view.getDrawingRect(vRect);
68 int right = left + vRect.width();
69 int bottom = top + vRect.height();
76 assertEquals(vRect.width(), view.getWidth());
77 assertEquals(vRect.height(), view.getHeight());
79 assertEquals(vRect.width(), view.getMeasuredWidth());
80 assertEquals(vRect.height(), view.getMeasuredHeight());
91 view.getDrawingRect(vRect);
95 int nright = nleft + vRect.width()
    [all...]
  /external/webkit/Source/WebCore/platform/wx/
ScrollViewWx.cpp 187 wxRect vRect(win->GetVirtualSize());
193 else if (newScrollOffset.x + cRect.width > vRect.width)
194 newScrollOffset.x = max(0, vRect.width - cRect.width);
198 else if (newScrollOffset.y + cRect.height > vRect.height)
199 newScrollOffset.y = max(0, vRect.height - cRect.height);
238 wxRect crect(win->GetClientRect()), vrect(win->GetVirtualSize());
258 win->SetScrollbar(wxHORIZONTAL, x, crect.width, vrect.width, refresh);
263 win->SetScrollbar(wxHORIZONTAL, x, crect.width, vrect.width, refresh);
276 win->SetScrollbar(wxVERTICAL, y, crect.height, vrect.height, refresh);
281 win->SetScrollbar(wxVERTICAL, y, crect.height, vrect.height, refresh)
    [all...]

Completed in 50 milliseconds