Searched defs:moveTo (Results 1 - 3 of 3) 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/graphics/java/android/graphics/
H A DPath.java329 public void moveTo(float x, float y) { method in class:Path
336 * same as moveTo().
349 * If no moveTo() call has been made for this contour, the first point is
362 * point on this contour. If there is no previous point, then a moveTo(0,0)
377 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
392 * point on this contour. If there is no previous point, then a moveTo(0,0)
411 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
430 * moveTo(0,0) is inserted automatically.
442 * start of the arc. However, if the path is empty, then we call moveTo()
460 * 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.java229 pathDelegate.moveTo(x, y);
639 public void moveTo(float x, float y) { method in class:Path_Delegate
640 mPath.moveTo(mLastX = x, mLastY = y);
646 * same as moveTo().
656 mPath.moveTo(mLastX = dx, mLastY = dy);
661 * If no moveTo() call has been made for this contour, the first point is
669 mPath.moveTo(mLastX = 0, mLastY = 0);
676 * point on this contour. If there is no previous point, then a moveTo(0,0)
686 mPath.moveTo(mLastX = 0, mLastY = 0);
701 * (x1,y1), and ending at (x2,y2). If no moveTo() cal
[all...]

Completed in 3336 milliseconds