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 132 Rect vRect = new Rect();
141 view.getDrawingRect(vRect);
145 int right = left + vRect.width();
146 int bottom = top + vRect.height();
153 assertEquals(vRect.width(), view.getWidth());
154 assertEquals(vRect.height(), view.getHeight());
156 assertEquals(vRect.width(), view.getMeasuredWidth());
157 assertEquals(vRect.height(), view.getMeasuredHeight());
168 view.getDrawingRect(vRect);
172 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 677 milliseconds