Searched defs:moveTo (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DCursorTreeAdapter.java103 if (mGroupCursorHelper.moveTo(groupPosition) == null) return null;
169 return getChildrenCursorHelper(groupPosition, true).moveTo(childPosition);
183 return mGroupCursorHelper.moveTo(groupPosition);
196 Cursor cursor = mGroupCursorHelper.moveTo(groupPosition);
240 Cursor cursor = cursorHelper.moveTo(childPosition);
445 Cursor moveTo(int position) { method in class:CursorTreeAdapter.MyCursorHelper
/frameworks/base/packages/EasterEgg/src/com/android/egg/octo/
H A DOctopusDrawable.java73 0,0, // arm will be repositioned on moveTo
148 moveTo(w/2, h/2);
157 public void moveTo(float x, float y) { method in class:OctopusDrawable
265 p.moveTo(pt.x, pt.y);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java334 public void moveTo(float x, float y) { method in class:Path
341 * same as moveTo().
354 * If no moveTo() call has been made for this contour, the first point is
367 * point on this contour. If there is no previous point, then a moveTo(0,0)
382 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
397 * point on this contour. If there is no previous point, then a moveTo(0,0)
416 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
435 * moveTo(0,0) is inserted automatically.
447 * start of the arc. However, if the path is empty, then we call moveTo()
465 * start of the arc. However, if the path is empty, then we call moveTo()
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java231 pathDelegate.moveTo(x, y);
642 public void moveTo(float x, float y) { method in class:Path_Delegate
643 mPath.moveTo(mLastX = x, mLastY = y);
649 * same as moveTo().
659 mPath.moveTo(mLastX = dx, mLastY = dy);
664 * If no moveTo() call has been made for this contour, the first point is
672 mPath.moveTo(mLastX = 0, mLastY = 0);
679 * point on this contour. If there is no previous point, then a moveTo(0,0)
689 mPath.moveTo(mLastX = 0, mLastY = 0);
704 * (x1,y1), and ending at (x2,y2). If no moveTo() cal
[all...]

Completed in 1213 milliseconds