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/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java217 pathDelegate.moveTo(x, y);
571 private void moveTo(float x, float y) { method in class:Path_Delegate
572 mPath.moveTo(mLastX = x, mLastY = y);
578 * same as moveTo().
588 mPath.moveTo(mLastX = dx, mLastY = dy);
593 * If no moveTo() call has been made for this contour, the first point is
605 * point on this contour. If there is no previous point, then a moveTo(0,0)
615 mPath.moveTo(mLastX = 0, mLastY = 0);
624 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
638 * point on this contour. If there is no previous point, then a moveTo(
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPath.java219 public void moveTo(float x, float y) { method in class:Path
226 * same as moveTo().
239 * If no moveTo() call has been made for this contour, the first point is
252 * point on this contour. If there is no previous point, then a moveTo(0,0)
267 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
282 * point on this contour. If there is no previous point, then a moveTo(0,0)
301 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
320 * moveTo(0,0) is inserted automatically.
332 * start of the arc. However, if the path is empty, then we call moveTo()
351 * start of the arc. However, if the path is empty, then we call moveTo()
[all...]

Completed in 124 milliseconds