Home
last modified time | relevance | path

Searched refs:lineTo (Results 1 – 15 of 15) sorted by relevance

/development/tools/winscope/src/app/components/timeline/mini-timeline/drawer/
Dmini_timeline_drawer_impl.ts103 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/
DPathEffects.java104 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()
DCompass.java89 mPath.lineTo(-20, 60); in SampleView()
90 mPath.lineTo(0, 50); in SampleView()
91 mPath.lineTo(20, 60); in SampleView()
DShapeDrawable1.java87 path.lineTo(0, 50); in SampleView()
88 path.lineTo(50, 100); in SampleView()
89 path.lineTo(100, 50); in SampleView()
DSensorTest.java171 mPath.lineTo(-20, 60); in SampleView()
172 mPath.lineTo(0, 50); in SampleView()
173 mPath.lineTo(20, 60); in SampleView()
DShadowCardDrag.java123 mPath.lineTo(width, 0); in onResize()
124 mPath.lineTo(width / 2, height); in onResize()
125 mPath.lineTo(0, 0); in onResize()
DFingerPaint.java110 mPath.lineTo(mX, mY); in touch_up()
/development/tools/winscope/src/app/components/timeline/expanded-timeline/
Dcanvas_drawer.ts99 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/
DAnimatorPath.java48 public void lineTo(float x, float y) { in lineTo() method in AnimatorPath
49 mPoints.add(PathPoint.lineTo(x, y)); in lineTo()
DPathPoint.java82 public static PathPoint lineTo(float x, float y) { in lineTo() method in PathPoint
/development/samples/browseable/Interpolator/src/com.example.android.interpolator/
DInterpolatorFragment.java183 mPathIn.lineTo(1f, 1f); in onCreateView()
188 mPathOut.lineTo(0.2f, 0.2f); in onCreateView()
/development/tools/winscope/src/viewers/components/rects/
Dcanvas.ts343 .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/
DGameView.java611 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/
DGameView.java681 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/
DStylusDrawingView.java133 mDrawPath.lineTo(x, y); in onTouchEvent()