Searched refs:moveTo (Results 1 - 25 of 34) sorted by relevance

12

/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/opt/bitmap/src/com/android/bitmap/drawable/
H A DStyledCornersBitmapDrawable.java295 mCompatibilityModePath.moveTo(left, top);
304 mCompatibilityModePath.moveTo(right, top);
314 mCompatibilityModePath.moveTo(right, bottom);
323 mCompatibilityModePath.moveTo(left, bottom);
333 mCompatibilityModePath.moveTo(left, top);
341 mCompatibilityModePath.moveTo(right, top);
349 mCompatibilityModePath.moveTo(right, bottom);
357 mCompatibilityModePath.moveTo(left, bottom);
383 mClipPath.moveTo(left, top);
390 mClipPath.moveTo(lef
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
H A DDrawerArrowDrawable.java134 mPath.moveTo(arrowEdge + middleBarCut, 0);
138 mPath.moveTo(arrowEdge, topBottomBarOffset);
142 mPath.moveTo(arrowEdge, -topBottomBarOffset);
/frameworks/base/core/java/android/gesture/
H A DOrientedBoundingBox.java64 path.moveTo(point[0], point[1]);
H A DGestureStroke.java135 path.moveTo(x, y);
184 path.moveTo(x, y);
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPath_Delegate.java224 pathDelegate.moveTo(x, y);
582 private void moveTo(float x, float y) { method in class:Path_Delegate
583 mPath.moveTo(mLastX = x, mLastY = y);
589 * same as moveTo().
599 mPath.moveTo(mLastX = dx, mLastY = dy);
604 * If no moveTo() call has been made for this contour, the first point is
612 mPath.moveTo(mLastX = 0, mLastY = 0);
619 * point on this contour. If there is no previous point, then a moveTo(0,0)
629 mPath.moveTo(mLastX = 0, mLastY = 0);
638 * (x1,y1), and ending at (x2,y2). If no moveTo() cal
[all...]
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DPathsCacheActivity.java56 path.moveTo(0.0f, 0.0f);
69 path.moveTo(0.0f, 0.0f);
H A DTextOnPathActivity.java51 path.moveTo(0.0f, 0.0f);
64 path.moveTo(0.0f, 0.0f);
H A DClearActivity.java59 mPath.moveTo(0.0f, 0.0f);
H A DPathDestructionActivity.java65 path.moveTo(left, top);
H A DScaledPathsActivity.java52 mPath.moveTo(0.0f, 0.0f);
H A DScaledTextActivity.java87 path.moveTo(0.0f, 0.0f);
H A DPathsActivity.java86 mPath.moveTo(0.0f, 0.0f);
H A DShapesActivity.java72 mTriangle.moveTo(0.0f, 90.0f);
/frameworks/base/core/java/android/view/animation/
H A DPathInterpolator.java41 * path.moveTo(0.25f, 0.5f);
145 path.moveTo(0, 0);
152 path.moveTo(0, 0);
/frameworks/base/core/java/android/transition/
H A DArcMotion.java200 path.moveTo(startX, startY);
H A DTranslationAnimationCreator.java69 path.moveTo(startX, startY);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DKeyguardClockPositionAlgorithm.java65 path.moveTo(0, 0);
/frameworks/base/core/java/android/text/
H A DLayout.java1336 dest.moveTo(h1, top);
1339 dest.moveTo(h1, top);
1342 dest.moveTo(h2, (top + bottom) >> 1);
1347 dest.moveTo(h2, bottom);
1352 dest.moveTo(h2, bottom);
1355 dest.moveTo(h2 - dist, bottom + dist - 0.5f);
1358 dest.moveTo(h2 + dist, bottom + dist);
1363 dest.moveTo(h1, top);
1368 dest.moveTo(h1, top);
1371 dest.moveTo(h
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DPlatLogoActivity.java118 mShadow.moveTo(0,0);
/frameworks/base/core/java/android/util/
H A DPathParser.java332 path.moveTo(currentX, currentY);
374 path.moveTo(val[k + 0], val[k + 1]);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DBatteryMeterView.java352 mShapePath.moveTo(mButtonFrame.left, mButtonFrame.top);
372 mBoltPath.moveTo(
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DFakeShadowDrawable.java242 mCornerShadowPath.moveTo(-mCornerRadius, 0);
/frameworks/support/v7/cardview/eclair-mr1/android/support/v7/widget/
H A DRoundRectDrawableWithShadow.java277 mCornerShadowPath.moveTo(-mCornerRadius, 0);
/frameworks/base/graphics/java/android/graphics/
H A DPath.java314 public void moveTo(float x, float y) { method in class:Path
321 * same as moveTo().
334 * If no moveTo() call has been made for this contour, the first point is
347 * point on this contour. If there is no previous point, then a moveTo(0,0)
362 * (x1,y1), and ending at (x2,y2). If no moveTo() call has been made for
377 * point on this contour. If there is no previous point, then a moveTo(0,0)
396 * (x1,y1) and (x2,y2), and ending at (x3,y3). If no moveTo() call has been
415 * moveTo(0,0) is inserted automatically.
427 * start of the arc. However, if the path is empty, then we call moveTo()
445 * start of the arc. However, if the path is empty, then we call moveTo()
[all...]

Completed in 4233 milliseconds

12