Lines Matching refs:operationSelf
296 return operationSelf(r, op_or); in orSelf()
299 return operationSelf(r, op_xor); in xorSelf()
302 return operationSelf(r, op_and); in andSelf()
305 return operationSelf(r, op_nand); in subtractSelf()
307 Region& Region::operationSelf(const Rect& r, uint32_t op) { in operationSelf() function in android::Region
316 return operationSelf(rhs, op_or); in orSelf()
319 return operationSelf(rhs, op_xor); in xorSelf()
322 return operationSelf(rhs, op_and); in andSelf()
325 return operationSelf(rhs, op_nand); in subtractSelf()
327 Region& Region::operationSelf(const Region& rhs, uint32_t op) { in operationSelf() function in android::Region
401 return operationSelf(rhs, dx, dy, op_or); in orSelf()
404 return operationSelf(rhs, dx, dy, op_xor); in xorSelf()
407 return operationSelf(rhs, dx, dy, op_and); in andSelf()
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() function in android::Region