/frameworks/base/core/tests/coretests/src/android/text/ |
D | LayoutBidiCursorPathTest.java | 73 expectedPath.moveTo(h1, top); in testGetCursorPathSegments() 104 expectedPath.moveTo(h1, top); in testGetCursorPath_whenShiftIsPressed() 107 expectedPath.moveTo(h1, bottom); in testGetCursorPath_whenShiftIsPressed() 110 expectedPath.moveTo(h1 - dist, bottom + dist - 0.5f); in testGetCursorPath_whenShiftIsPressed() 113 expectedPath.moveTo(h1 + dist, bottom + dist); in testGetCursorPath_whenShiftIsPressed() 143 expectedPath.moveTo(h1, top); in testGetCursorPath_whenAltIsPressed() 146 expectedPath.moveTo(h1, top); in testGetCursorPath_whenAltIsPressed() 149 expectedPath.moveTo(h1 - dist, top - dist + 0.5f); in testGetCursorPath_whenAltIsPressed() 152 expectedPath.moveTo(h1 + dist, top - dist); in testGetCursorPath_whenAltIsPressed()
|
/frameworks/base/libs/hwui/tests/unit/ |
D | VectorDrawableTests.cpp | 48 outPath->moveTo(2, 22); in __anonc5d061910102() 52 outPath->moveTo(2, 22); in __anonc5d061910102() 72 outPath->moveTo(1.0, 1.0); in __anonc5d061910202() 122 outPath->moveTo(0.0, -1.0); in __anonc5d061910302() 132 outPath->moveTo(0.0, -1.0); in __anonc5d061910302() 133 outPath->moveTo(7.0, -9.0); in __anonc5d061910302() 144 outPath->moveTo(7.0, -9.0); in __anonc5d061910302() 161 outPath->moveTo(300.0, 70.0); in __anonc5d061910402() 165 outPath->moveTo(300.0, 70.0); in __anonc5d061910402() 187 outPath->moveTo(5.3, 13.2); in __anonc5d061910502() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/assist/ui/ |
D | CircularCornerPathRenderer.java | 45 mPath.moveTo(0, mHeight - mCornerRadiusBottom); in getCornerPath() 50 mPath.moveTo(mWidth - mCornerRadiusBottom, mHeight); in getCornerPath() 55 mPath.moveTo(mWidth, mCornerRadiusTop); in getCornerPath() 60 mPath.moveTo(mCornerRadiusTop, 0); in getCornerPath()
|
D | PerimeterPathGuide.java | 257 bottomPath.moveTo(getPhysicalCornerRadius(screenBottomLeft), screenHeight - mEdgeInset); in computeRegions() 263 topPath.moveTo(screenWidth - getPhysicalCornerRadius(screenTopRight), mEdgeInset); in computeRegions() 268 rightPath.moveTo(screenWidth - mEdgeInset, in computeRegions() 274 leftPath.moveTo(mEdgeInset, in computeRegions()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/ |
D | TriangleShape.java | 40 triangularPath.moveTo(0, height); in create() 45 triangularPath.moveTo(0, 0); in create() 58 triangularPath.moveTo(0, height / 2); in createHorizontal() 63 triangularPath.moveTo(0, height); in createHorizontal()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/ |
D | GlifPatternDrawable.java | 179 p.moveTo(1029.4f, 357.5f); in renderOnCanvas() 186 p.moveTo(1138.1f, 0f); in renderOnCanvas() 194 p.moveTo(949.8f, 768f); in renderOnCanvas() 201 p.moveTo(471.1f, 768f); in renderOnCanvas() 209 p.moveTo(323.1f, 768f); in renderOnCanvas() 210 p.moveTo(777.5f, 768f); in renderOnCanvas() 216 p.moveTo(178.44286f, 766.8571f); in renderOnCanvas() 223 p.moveTo(146f, 0f); in renderOnCanvas()
|
/frameworks/opt/bitmap/src/com/android/bitmap/drawable/ |
D | StyledCornersBitmapDrawable.java | 315 mCompatibilityModePath.moveTo(left, top); in drawFakeCornersForCompatibilityMode() 324 mCompatibilityModePath.moveTo(right, top); in drawFakeCornersForCompatibilityMode() 334 mCompatibilityModePath.moveTo(right, bottom); in drawFakeCornersForCompatibilityMode() 343 mCompatibilityModePath.moveTo(left, bottom); in drawFakeCornersForCompatibilityMode() 353 mCompatibilityModePath.moveTo(left, top); in drawFakeCornersForCompatibilityMode() 361 mCompatibilityModePath.moveTo(right, top); in drawFakeCornersForCompatibilityMode() 369 mCompatibilityModePath.moveTo(right, bottom); in drawFakeCornersForCompatibilityMode() 377 mCompatibilityModePath.moveTo(left, bottom); in drawFakeCornersForCompatibilityMode() 411 mClipPath.moveTo(left, top); in recalculatePath() 418 mClipPath.moveTo(left, top - mCornerFlapSide); in recalculatePath()
|
/frameworks/base/core/java/android/widget/ |
D | CursorTreeAdapter.java | 103 if (mGroupCursorHelper.moveTo(groupPosition) == null) return null; in getChildrenCursorHelper() 169 return getChildrenCursorHelper(groupPosition, true).moveTo(childPosition); in getChild() 183 return mGroupCursorHelper.moveTo(groupPosition); in getGroup() 196 Cursor cursor = mGroupCursorHelper.moveTo(groupPosition); in getGroupView() 240 Cursor cursor = cursorHelper.moveTo(childPosition); in getChildView() 445 Cursor moveTo(int position) { in moveTo() method in CursorTreeAdapter.MyCursorHelper
|
/frameworks/layoutlib/bridge/src/android/graphics/ |
D | Path_Delegate.java | 235 pathDelegate.moveTo(x, y); in nMoveTo() 655 public void moveTo(float x, float y) { in moveTo() method in Path_Delegate 656 mPath.moveTo(mLastX = x, mLastY = y); in moveTo() 672 mPath.moveTo(mLastX = dx, mLastY = dy); in rMoveTo() 685 mPath.moveTo(mLastX = 0, mLastY = 0); in lineTo() 702 mPath.moveTo(mLastX = 0, mLastY = 0); in rLineTo() 745 mPath.moveTo(mLastX = 0, mLastY = 0); in rQuadTo() 769 mPath.moveTo(0, 0); in cubicTo() 782 mPath.moveTo(mLastX = 0, mLastY = 0); in rCubicTo() 844 moveTo(left, top); in addRect()
|
/frameworks/base/packages/SystemUI/legacy/recents/src/com/android/systemui/recents/views/grid/ |
D | GridTaskViewThumbnail.java | 112 mRestBackgroundOutline.moveTo(l, t); // A in updateThumbnailOutline() 128 mRestBackgroundOutline.moveTo(l, t); // A in updateThumbnailOutline() 147 outPath.moveTo(outerLeft, outerTop); in createThumbnailPath()
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | PathsCacheActivity.java | 56 path.moveTo(0.0f, 0.0f); in buildPath() 69 path.moveTo(0.0f, 0.0f); in buildLargePath()
|
D | TextOnPathActivity.java | 51 path.moveTo(0.0f, 0.0f); in buildPath() 64 path.moveTo(0.0f, 0.0f); in buildStraightPath()
|
D | ScaledPathsActivity.java | 52 mPath.moveTo(0.0f, 0.0f); in PathsView()
|
D | ClearActivity.java | 59 mPath.moveTo(0.0f, 0.0f); in PathsView()
|
/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/ |
D | GestureDescriptionTest.java | 46 clickPath.moveTo(click.x, click.y); in testGestureShorterThanSampleRate_producesStartAndEnd() 115 path0.moveTo(path0Start.x, path0Start.y); in testPathsWithOverlappingTiming_produceCorrectSteps() 204 path.moveTo(baseStartPoint.x + i * xStep, baseStartPoint.y); in testMaxTouchpoints_shouldHaveValidCoords() 245 swipePath.moveTo(10, 20); in testGetGestureSteps_continuedStroke_hasNoEndPoint() 259 swipePath.moveTo(10, 20); in testGetGestureSteps_continuingStroke_hasNoStartPointAndHasContinuedId() 282 swipePath.moveTo(startX, startY); in createSwipeStroke()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | PathInterpolatorBuilder.java | 45 path.moveTo(0, 0); in initQuad() 52 path.moveTo(0, 0); in initCubic()
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
D | SysUiOverlay.java | 38 corner.moveTo(0, 0); in createCornerPath() 48 corner.moveTo(0, 0); in createNotchPath()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | CornerHandleView.java | 92 mPath.moveTo(marginPx + halfStrokePx, marginPx + radiusPx + lineLengthPx); in updatePath() 95 mPath.moveTo(marginPx + radiusPx, marginPx + halfStrokePx); in updatePath()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | HeadsUpAppearInterpolator.java | 37 path.moveTo(0, 0); in getAppearPath()
|
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/ |
D | Region.java | 59 path.moveTo(mPointsXY[i] - bounds.left + mCutOffsetX, in getSourceLocation() 108 path.moveTo(mPointsXY[i] - mRoiBounds.left + cutOffsetX, in findMatch()
|
/frameworks/rs/tests/java_api/HealingBrush/src/rs/example/android/com/healingbrush/ |
D | Region.java | 68 path.moveTo(mPointsXY[i] - bounds.left + mCutOffsetX, in getSourceLocation() 117 path.moveTo(mPointsXY[i] - mRoiBounds.left + cutOffsetX, in findMatch()
|
/frameworks/base/core/java/android/view/animation/ |
D | PathInterpolator.java | 149 path.moveTo(0, 0); in initQuad() 156 path.moveTo(0, 0); in initCubic()
|
/frameworks/base/core/java/android/gesture/ |
D | GestureStroke.java | 134 path.moveTo(x, y); in makePath() 183 path.moveTo(x, y); in toPath()
|
D | OrientedBoundingBox.java | 64 path.moveTo(point[0], point[1]); in toPath()
|
/frameworks/base/core/java/com/android/internal/app/ |
D | PlatLogoActivity.java | 287 p.moveTo(12f, 21.83f); in draw() 331 path.moveTo(0, 0); in BackslashDrawable() 337 path.moveTo(0, h / 2); in BackslashDrawable()
|