Lines Matching refs:operationSelf
286 return operationSelf(r, op_or); in orSelf()
289 return operationSelf(r, op_xor); in xorSelf()
292 return operationSelf(r, op_and); in andSelf()
295 return operationSelf(r, op_nand); in subtractSelf()
297 Region& Region::operationSelf(const Rect& r, uint32_t op) { in operationSelf() function in android::Region
306 return operationSelf(rhs, op_or); in orSelf()
309 return operationSelf(rhs, op_xor); in xorSelf()
312 return operationSelf(rhs, op_and); in andSelf()
315 return operationSelf(rhs, op_nand); in subtractSelf()
317 Region& Region::operationSelf(const Region& rhs, uint32_t op) { in operationSelf() function in android::Region
377 return operationSelf(rhs, dx, dy, op_or); in orSelf()
380 return operationSelf(rhs, dx, dy, op_xor); in xorSelf()
383 return operationSelf(rhs, dx, dy, op_and); in andSelf()
386 return operationSelf(rhs, dx, dy, op_nand); in subtractSelf()
388 Region& Region::operationSelf(const Region& rhs, int dx, int dy, uint32_t op) { in operationSelf() function in android::Region