Home | History | Annotate | Download | only in views

Lines Matching refs:left

19   SidedSolidBorder(int top, int left, int bottom, int right, SkColor color);
33 int left,
38 insets_(top, left, bottom, right) {
44 // Left border.
45 canvas->FillRect(gfx::Rect(0, 0, insets_.left(), view.height()), color_);
71 EmptyBorder(int top, int left, int bottom, int right)
72 : insets_(top, left, bottom, right) {}
127 Border* Border::CreateEmptyBorder(int top, int left, int bottom, int right) {
128 return new EmptyBorder(top, left, bottom, right);
133 int left,
137 return new SidedSolidBorder(top, left, bottom, right, color);