Lines Matching refs:right
118 * If left < right and top < bottom, set this region to that rectangle and
121 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom);
195 bool quickContains(int32_t left, int32_t top, int32_t right,
199 return left < right && top < bottom &&
201 /* fBounds.contains(left, top, right, bottom); */
203 fBounds.fRight >= right && fBounds.fBottom >= bottom;
262 bool op(int left, int top, int right, int bottom, Op op) {
264 rect.set(left, top, right, bottom);
347 * Y scanline, clipped to the specified left and right X values.
351 Spanerator(const SkRegion&, int y, int left, int right);
352 bool next(int* left, int* right);