Lines Matching defs:left
78 inline bool operator==(const Range& left, const Range& right) {
79 return left.start == right.start && left.end == right.end;
83 * Inset lengths from all edges of a rectangle. `left` and `top` are measured
84 * from the left and top
89 int32_t left = 0;
96 : left(l), top(t), right(r), bottom(b) {}
102 return left != 0 || top != 0 || right != 0 || bottom != 0;
105 inline bool operator==(const Bounds& left, const Bounds& right) {
106 return left.left == right.left && left.top == right.top &&
107 left.right == right.right && left.bottom == right.bottom;