Home | History | Annotate | Download | only in core

Lines Matching full:left

96     /** If left < right and top < bottom, set this region to that rectangle and
99 bool setRect(int32_t left, int32_t top, int32_t right, int32_t bottom);
155 bool quickContains(int32_t left, int32_t top, int32_t right,
159 return left < right && top < bottom &&
161 /* fBounds.contains(left, top, right, bottom); */
162 fBounds.fLeft <= left && fBounds.fTop <= top &&
218 bool op(int left, int top, int right, int bottom, Op op) {
220 rect.set(left, top, right, bottom);
285 Y scanline, clipped to the specified left and right X values.
289 Spanerator(const SkRegion&, int y, int left, int right);
290 bool next(int* left, int* right);