Searched refs:left_half (Results 1 – 4 of 4) sorted by relevance
/external/libchrome/ui/gfx/geometry/ |
D | rect_f.cc | 186 void RectF::SplitVertically(RectF* left_half, RectF* right_half) const { in SplitVertically() argument 187 DCHECK(left_half); in SplitVertically() 190 left_half->SetRect(x(), y(), width() / 2, height()); in SplitVertically() 192 left_half->right(), y(), width() - left_half->width(), height()); in SplitVertically()
|
D | rect.cc | 260 void Rect::SplitVertically(Rect* left_half, Rect* right_half) const { in SplitVertically() argument 261 DCHECK(left_half); in SplitVertically() 264 left_half->SetRect(x(), y(), width() / 2, height()); in SplitVertically() 266 left_half->right(), y(), width() - left_half->width(), height()); in SplitVertically()
|
D | rect_f.h | 153 void SplitVertically(RectF* left_half, RectF* right_half) const;
|
D | rect.h | 193 void SplitVertically(Rect* left_half, Rect* right_half) const;
|