Lines Matching refs:right
19 SidedSolidBorder(int top, int left, int bottom, int right, SkColor color);
35 int right,
38 insets_(top, left, bottom, right) {
49 // Right border.
50 canvas->FillRect(gfx::Rect(view.width() - insets_.right(), 0, insets_.right(),
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);
135 int right,
137 return new SidedSolidBorder(top, left, bottom, right, color);