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