Home | History | Annotate | Download | only in graphics

Lines Matching refs:left

31     public final int left;
36 private Insets(int left, int top, int right, int bottom) {
37 this.left = left;
48 * @param left the left inset
55 public static Insets of(int left, int top, int right, int bottom) {
56 if (left == 0 && top == 0 && right == 0 && bottom == 0) {
59 return new Insets(left, top, right, bottom);
70 return (r == null) ? NONE : of(r.left, r.top, r.right, r.bottom);
89 if (left != insets.left) return false;
98 int result = left;
108 "left=" + left +