Lines Matching full:rect
21 #include <ui/Rect.h>
28 void checkVertTJunction(const Rect* lhs, const Rect* rhs) {
34 for (const Rect* current = r.begin(); current < r.end(); current++) {
35 for (const Rect* other = current - 1; other >= r.begin(); other--) {
40 for (const Rect* other = current + 1; other < r.end(); other++) {
63 r.orSelf(Rect(1, 0, 2, 1));
64 r.orSelf(Rect(0, 1, 3, 2));
71 r.orSelf(Rect(1, 0, 2, 1));
72 r.orSelf(Rect(0, 2, 3, 3));
80 r.orSelf(Rect(100, 100, 500, 500));
91 r.orSelf(Rect(1, 0, 2, 1));
92 r.orSelf(Rect(0, 1, 3, 3));
99 r.orSelf(Rect(2,0,4,2));
100 r.orSelf(Rect(0,2,4,4));
101 r.orSelf(Rect(0,4,6,6));
108 r.orSelf(Rect(0,0,2,6));
109 r.orSelf(Rect(4,0,6,6));
110 r.orSelf(Rect(0,2,6,4));
117 r.orSelf(Rect(0,0,6,2));
118 r.orSelf(Rect(2,2,4,6));
129 r.orSelf(Rect(i,i,i+4,i+1));
147 r.orSelf(Rect(i, j, i + 1, j + 1));