Lines Matching refs:dy

400 Region& Region::orSelf(const Region& rhs, int dx, int dy) {  in orSelf()  argument
401 return operationSelf(rhs, dx, dy, op_or); in orSelf()
403 Region& Region::xorSelf(const Region& rhs, int dx, int dy) { in xorSelf() argument
404 return operationSelf(rhs, dx, dy, op_xor); in xorSelf()
406 Region& Region::andSelf(const Region& rhs, int dx, int dy) { in andSelf() argument
407 return operationSelf(rhs, dx, dy, op_and); in andSelf()
409 Region& Region::subtractSelf(const Region& rhs, int dx, int dy) { in subtractSelf() argument
410 return operationSelf(rhs, dx, dy, op_nand); in subtractSelf()
412 Region& Region::operationSelf(const Region& rhs, int dx, int dy, uint32_t op) { in operationSelf() argument
414 boolean_operation(op, *this, lhs, rhs, dx, dy); in operationSelf()
420 const Region Region::merge(const Region& rhs, int dx, int dy) const { in merge()
421 return operation(rhs, dx, dy, op_or); in merge()
423 const Region Region::mergeExclusive(const Region& rhs, int dx, int dy) const { in mergeExclusive()
424 return operation(rhs, dx, dy, op_xor); in mergeExclusive()
426 const Region Region::intersect(const Region& rhs, int dx, int dy) const { in intersect()
427 return operation(rhs, dx, dy, op_and); in intersect()
429 const Region Region::subtract(const Region& rhs, int dx, int dy) const { in subtract()
430 return operation(rhs, dx, dy, op_nand); in subtract()
432 const Region Region::operation(const Region& rhs, int dx, int dy, uint32_t op) const { in operation() argument
434 boolean_operation(op, result, *this, rhs, dx, dy); in operation()
620 const Region& rhs, int dx, int dy) in boolean_operation() argument
635 region_operator<Rect>::region rhs_region(rhs_rects, rhs_count, dx, dy); in boolean_operation()
656 lhs_rects[i].top + dy, in boolean_operation()
658 lhs_rects[i].bottom + dy, in boolean_operation()
664 rhs_rects[i].top + dy, in boolean_operation()
666 rhs_rects[i].bottom + dy, in boolean_operation()
730 const Rect& rhs, int dx, int dy) in boolean_operation() argument
741 boolean_operation(op, dst, lhs, Region(rhs), dx, dy); in boolean_operation()
747 region_operator<Rect>::region rhs_region(&rhs, 1, dx, dy); in boolean_operation()
769 void Region::translate(Region& reg, int dx, int dy) in translate() argument
771 if ((dx || dy) && !reg.isEmpty()) { in translate()
778 rects->offsetBy(dx, dy); in translate()
788 void Region::translate(Region& dst, const Region& reg, int dx, int dy) in translate() argument
791 translate(dst, dx, dy); in translate()