HomeSort by relevance Sort by last modified time
    Searched full:left_half (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/ui/gfx/geometry/
rect_base_impl.h 293 SplitVertically(Class* left_half, Class* right_half) const {
294 DCHECK(left_half);
297 left_half->SetRect(x(), y(), width() / 2, height());
298 right_half->SetRect(left_half->right(),
300 width() - left_half->width(),
rect_base.h 139 // Splits |this| in two halves, |left_half| and |right_half|.
140 void SplitVertically(Class* left_half, Class* right_half) const;
rect_unittest.cc 303 Rect left_half, right_half; local
306 Rect(0, 0, 20, 20).SplitVertically(&left_half, &right_half);
307 EXPECT_TRUE(left_half == Rect(0, 0, 10, 20));
311 Rect(10, 10, 20, 10).SplitVertically(&left_half, &right_half);
312 EXPECT_TRUE(left_half == Rect(10, 10, 10, 10));
316 Rect(10, 10, 0, 10).SplitVertically(&left_half, &right_half);
317 EXPECT_TRUE(left_half == Rect(10, 10, 0, 10));
321 Rect(10, 10, 5, 10).SplitVertically(&left_half, &right_half);
322 EXPECT_TRUE(left_half == Rect(10, 10, 2, 10));
  /external/chromium_org/chrome/browser/ui/tabs/
dock_info.h 43 LEFT_HALF,
  /external/chromium_org/ui/native_theme/
native_theme_win.cc 1423 RECT& left_half = bottom_section; local
    [all...]

Completed in 708 milliseconds