Lines Matching defs:dx

376 Region& Region::orSelf(const Region& rhs, int dx, int dy) {
377 return operationSelf(rhs, dx, dy, op_or);
379 Region& Region::xorSelf(const Region& rhs, int dx, int dy) {
380 return operationSelf(rhs, dx, dy, op_xor);
382 Region& Region::andSelf(const Region& rhs, int dx, int dy) {
383 return operationSelf(rhs, dx, dy, op_and);
385 Region& Region::subtractSelf(const Region& rhs, int dx, int dy) {
386 return operationSelf(rhs, dx, dy, op_nand);
388 Region& Region::operationSelf(const Region& rhs, int dx, int dy, int op) {
390 boolean_operation(op, *this, lhs, rhs, dx, dy);
396 const Region Region::merge(const Region& rhs, int dx, int dy) const {
397 return operation(rhs, dx, dy, op_or);
399 const Region Region::mergeExclusive(const Region& rhs, int dx, int dy) const {
400 return operation(rhs, dx, dy, op_xor);
402 const Region Region::intersect(const Region& rhs, int dx, int dy) const {
403 return operation(rhs, dx, dy, op_and);
405 const Region Region::subtract(const Region& rhs, int dx, int dy) const {
406 return operation(rhs, dx, dy, op_nand);
408 const Region Region::operation(const Region& rhs, int dx, int dy, int op) const {
410 boolean_operation(op, result, *this, rhs, dx, dy);
587 const Region& rhs, int dx, int dy)
602 region_operator<Rect>::region rhs_region(rhs_rects, rhs_count, dx, dy);
622 lhs_rects[i].left + dx,
624 lhs_rects[i].right + dx,
630 rhs_rects[i].left + dx,
632 rhs_rects[i].right + dx,
697 const Rect& rhs, int dx, int dy)
708 boolean_operation(op, dst, lhs, Region(rhs), dx, dy);
714 region_operator<Rect>::region rhs_region(&rhs, 1, dx, dy);
736 void Region::translate(Region& reg, int dx, int dy)
738 if ((dx || dy) && !reg.isEmpty()) {
745 rects->offsetBy(dx, dy);
755 void Region::translate(Region& dst, const Region& reg, int dx, int dy)
758 translate(dst, dx, dy);