Searched refs:operationSelf (Results 1 – 2 of 2) sorted by relevance
/frameworks/native/libs/ui/ |
D | Region.cpp | 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, int 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, int op) { in operationSelf() function in android::Region [all …]
|
/frameworks/native/include/ui/ |
D | Region.h | 150 Region& operationSelf(const Rect& r, int op); 151 Region& operationSelf(const Region& r, int op); 152 Region& operationSelf(const Region& r, int dx, int dy, int op);
|