/development/tools/winscope/src/app/components/timeline/mini-timeline/drawer/ |
D | mini_timeline_drawer_impl.ts | 103 ctx.lineTo(position + triangleHeight, 0); 104 ctx.lineTo(position + barWidth / 2, triangleHeight); 105 ctx.lineTo(position + barWidth / 2, this.getHeight()); 106 ctx.lineTo(position - barWidth / 2, this.getHeight()); 107 ctx.lineTo(position - barWidth / 2, triangleHeight); 307 this.ctx.lineTo(this.lastMousePoint.x + hoverWidth / 2, 0); 308 this.ctx.lineTo(this.lastMousePoint.x + hoverWidth / 2, this.getHeight()); 309 this.ctx.lineTo(this.lastMousePoint.x - hoverWidth / 2, this.getHeight()); 326 this.ctx.lineTo(position + flagWidth, 0); 327 this.ctx.lineTo(position + (flagWidth * 5) / 6, flagHeight / 2); [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | PathEffects.java | 104 p.lineTo(i*20, (float)Math.random() * 35); in makeFollowPath() 112 p.lineTo(0, -4); in makePathDash() 113 p.lineTo(8, -4); in makePathDash() 114 p.lineTo(12, 0); in makePathDash() 115 p.lineTo(8, 4); in makePathDash() 116 p.lineTo(0, 4); in makePathDash()
|
D | Compass.java | 89 mPath.lineTo(-20, 60); in SampleView() 90 mPath.lineTo(0, 50); in SampleView() 91 mPath.lineTo(20, 60); in SampleView()
|
D | ShapeDrawable1.java | 87 path.lineTo(0, 50); in SampleView() 88 path.lineTo(50, 100); in SampleView() 89 path.lineTo(100, 50); in SampleView()
|
D | SensorTest.java | 171 mPath.lineTo(-20, 60); in SampleView() 172 mPath.lineTo(0, 50); in SampleView() 173 mPath.lineTo(20, 60); in SampleView()
|
D | ShadowCardDrag.java | 123 mPath.lineTo(width, 0); in onResize() 124 mPath.lineTo(width / 2, height); in onResize() 125 mPath.lineTo(0, 0); in onResize()
|
D | FingerPaint.java | 110 mPath.lineTo(mX, mY); in touch_up()
|
/development/tools/winscope/src/app/components/timeline/expanded-timeline/ |
D | canvas_drawer.ts | 99 ctx.lineTo(rect.x + rect.w, rect.y); 100 ctx.lineTo(rect.x + rect.w, rect.y + rect.h); 101 ctx.lineTo(rect.x, rect.y + rect.h); 102 ctx.lineTo(rect.x, rect.y);
|
/development/samples/devbytes/animation/CurvedMotion/src/com/example/android/curvedmotion/ |
D | AnimatorPath.java | 48 public void lineTo(float x, float y) { in lineTo() method in AnimatorPath 49 mPoints.add(PathPoint.lineTo(x, y)); in lineTo()
|
D | PathPoint.java | 82 public static PathPoint lineTo(float x, float y) { in lineTo() method in PathPoint
|
/development/samples/browseable/Interpolator/src/com.example.android.interpolator/ |
D | InterpolatorFragment.java | 183 mPathIn.lineTo(1f, 1f); in onCreateView() 188 mPathOut.lineTo(0.2f, 0.2f); in onCreateView()
|
/development/tools/winscope/src/viewers/components/rects/ |
D | canvas.ts | 343 .lineTo(bottomLeft.x, bottomLeft.y - cornerRadius) 350 .lineTo(rect.bottomRight.x - cornerRadius, rect.bottomRight.y) 357 .lineTo(topRight.x, topRight.y + cornerRadius) 364 .lineTo(rect.topLeft.x + cornerRadius, rect.topLeft.y)
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | GameView.java | 611 mPath.lineTo((float)Math.cos(-CORNER_ANGLE) * mSize, 613 mPath.lineTo(mSize, 0); 614 mPath.lineTo((float)Math.cos(CORNER_ANGLE) * mSize, 616 mPath.lineTo(0, 0);
|
/development/samples/ControllerSample/src/com/example/controllersample/ |
D | GameView.java | 681 mPath.lineTo((float) Math.cos(-CORNER_ANGLE) * mSize, in Ship() 683 mPath.lineTo(mSize, 0); in Ship() 684 mPath.lineTo((float) Math.cos(CORNER_ANGLE) * mSize, in Ship() 686 mPath.lineTo(0, 0); in Ship()
|
/development/samples/VirtualDeviceManager/demos/src/com/example/android/vdmdemo/demos/ |
D | StylusDrawingView.java | 133 mDrawPath.lineTo(x, y); in onTouchEvent()
|