Lines Matching refs:left
100 * If the region is empty, returns false, and path is left unmodified.
117 * If left < right and top < bottom, set this region to that rectangle and
120 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom);
194 bool quickContains(int32_t left, int32_t top, int32_t right,
198 return left < right && top < bottom &&
200 /* fBounds.contains(left, top, right, bottom); */
201 fBounds.fLeft <= left && fBounds.fTop <= top &&
265 bool op(int left, int top, int right, int bottom, Op op) {
267 rect.set(left, top, right, bottom);
350 * Y scanline, clipped to the specified left and right X values.
354 Spanerator(const SkRegion&, int y, int left, int right);
355 bool next(int* left, int* right);