Home
last modified time | relevance | path

Searched refs:left_half (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/ui/gfx/geometry/
Drect_f.cc186 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()
Drect.cc260 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()
Drect_f.h153 void SplitVertically(RectF* left_half, RectF* right_half) const;
Drect.h193 void SplitVertically(Rect* left_half, Rect* right_half) const;