Home
last modified time | relevance | path

Searched refs:offsetBy (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/include/ui/
DRect.h132 Rect& offsetBy(const Point& dp) { in offsetBy() function
133 return offsetBy(dp.x, dp.y); in offsetBy()
136 return offsetBy(rhs.x, rhs.y);
139 return offsetBy(-rhs.x, -rhs.y);
145 offsetBy(dx, dy); in translate()
149 Rect& offsetBy(int32_t x, int32_t y);
/frameworks/native/libs/ui/
DRect.cpp66 Rect& Rect::offsetBy(int32_t x, int32_t y) in offsetBy() function in android::Rect