Home | History | Annotate | Download | only in views

Lines Matching refs:left

20   SidedSolidBorder(int top, int left, int bottom, int right, SkColor color);
35 int left,
40 insets_(top, left, bottom, right) {
46 // Left border.
47 canvas->FillRect(gfx::Rect(0, 0, insets_.left(), view.height()), color_);
77 EmptyBorder(int top, int left, int bottom, int right)
78 : insets_(top, left, bottom, right) {}
141 Border* Border::CreateEmptyBorder(int top, int left, int bottom, int right) {
142 return new EmptyBorder(top, left, bottom, right);
147 int left,
151 return new SidedSolidBorder(top, left, bottom, right, color);