HomeSort by relevance Sort by last modified time
    Searched defs:offsetBy (Results 1 - 4 of 4) sorted by null

  /frameworks/base/libs/ui/
Rect.cpp 65 Rect& Rect::offsetBy(int32_t x, int32_t y)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
Point.java 51 public Point offsetBy(int x, int y) {
Rect.java 108 public Rect offsetBy(int x, int y) {
  /frameworks/base/include/ui/
Rect.h 124 Rect& offsetBy(const Point& dp) {
125 return offsetBy(dp.x, dp.y);
128 return offsetBy(rhs.x, rhs.y);
131 return offsetBy(-rhs.x, -rhs.y);
137 offsetBy(dx, dy);
141 Rect& offsetBy(int32_t x, int32_t y);

Completed in 1411 milliseconds