/sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/ |
D | UnifiedContentBorder.java | 30 g.drawLine(x, y, x + width, y); in paintBorder() 32 g.drawLine(x, y + height - 2, x + width, y + height - 2); in paintBorder() 34 g.drawLine(x, y + height - 1, x + width, y + height - 1); in paintBorder()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/grid/ |
D | GridLayoutPainter.java | 67 gc.drawLine(b.x, y, b.x2(), y); in paintStructure() 71 gc.drawLine(x, b.y, x, b.y2()); in paintStructure() 202 gc.drawLine(b.x, y1, b.x2(), y1); in paintFreeFormDropFeedback() 203 gc.drawLine(b.x, y2, b.x2(), y2); in paintFreeFormDropFeedback() 210 gc.drawLine(b.x, y, b.x2(), y ); in paintFreeFormDropFeedback() 226 gc.drawLine(x1, b.y, x1, b.y2()); in paintFreeFormDropFeedback() 227 gc.drawLine(x2, b.y, x2, b.y2()); in paintFreeFormDropFeedback() 234 gc.drawLine(x, b.y, x, b.y2()); in paintFreeFormDropFeedback() 249 gc.drawLine(x1, y1, x1 + dragBounds.w, y1); in paintFreeFormDropFeedback() 272 gc.drawLine(b.x, y - radius, b.x2(), y - radius); in paintGridModeDropFeedback() [all …]
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
D | GCWrapper.java | 247 public void drawLine(int x1, int y1, int x2, int y2) { in drawLine() method in GCWrapper 254 getGc().drawLine(x1, y1, x2, y2); in drawLine() 258 public void drawLine(@NonNull Point p1, @NonNull Point p2) { in drawLine() method in GCWrapper 259 drawLine(p1.x, p1.y, p2.x, p2.y); in drawLine() 566 graphics.drawLine(x1, y1, x2, y2); in drawArrow() 573 graphics.drawLine(x2 - arrowWidth, y2 - arrowHeight, x2, y2); in drawArrow() 574 graphics.drawLine(x2 + arrowWidth, y2 - arrowHeight, x2, y2); in drawArrow() 576 graphics.drawLine(x2 - arrowWidth, y2 + arrowHeight, x2, y2); in drawArrow() 577 graphics.drawLine(x2 + arrowWidth, y2 + arrowHeight, x2, y2); in drawArrow() 582 graphics.drawLine(x2 - arrowHeight, y2 - arrowWidth, x2, y2); in drawArrow() [all …]
|
/sdk/rule_api/src/com/android/ide/common/api/ |
D | IGraphics.java | 43 void drawLine(int x1, int y1, int x2, int y2); in drawLine() method 49 void drawLine(@NonNull Point p1, @NonNull Point p2); in drawLine() method
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
D | ConstraintPainter.java | 445 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY); in paintVerticalConstraint() 460 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY); in paintVerticalConstraint() 556 graphics.drawLine(startX, sharedY, endX, sharedY); in paintVerticalConstraint() 644 graphics.drawLine(sharedX, targetBounds.y, sharedX, targetBounds.y2()); in paintHorizontalConstraint() 659 graphics.drawLine(sharedX, targetBounds.y, sharedX, targetBounds.y2()); in paintHorizontalConstraint() 713 graphics.drawLine(sharedX, startY, sharedX, endY); in paintHorizontalConstraint() 763 graphics.drawLine(targetBounds.x, targetBounds.centerY(), in paintVerticalCenterConstraint() 766 graphics.drawLine(sourceBounds.x, sourceBounds.centerY(), in paintVerticalCenterConstraint() 777 graphics.drawLine(targetBounds.centerX(), targetBounds.y, in paintHorizontalCenterConstraint() 780 graphics.drawLine(sourceBounds.centerX(), sourceBounds.y, in paintHorizontalCenterConstraint()
|
D | GuidelinePainter.java | 93 gc.drawLine(state.mBounds.x, y, state.mBounds.x2(), y); in paint() 205 gc.drawLine(points.get(i-1), points.get(i)); in paintCycle()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/ |
D | AbsoluteLayoutRule.java | 121 gc.drawLine(x, b.y, x, b.y + b.h); in drawFeedback() 122 gc.drawLine(b.x, y, b.x + b.w, y); in drawFeedback() 128 gc.drawLine(x, y, b.x + b.w, y); in drawFeedback() 129 gc.drawLine(x, y, x, b.y + b.h); in drawFeedback()
|
D | BaseLayoutRule.java | 670 gc.drawLine(s.from, s.at, s.to, s.at); 675 gc.drawLine(s.at, s.from, s.at, s.to); 701 gc.drawLine(b.x + b.w - wrapWidth, y, b.x + b.w, y); 704 gc.drawLine(b.x, y, b.x + wrapWidth, y); 709 gc.drawLine(b.x, y, b.x + b.w, y); 726 gc.drawLine(x, b.y + b.h - wrapHeight, x, b.y + b.h); 729 gc.drawLine(x, b.y, x, b.y + wrapHeight); 734 gc.drawLine(x, b.y, x, b.y + b.h);
|
D | FrameLayoutRule.java | 113 gc.drawLine(b.x + 1, b.y, b.x + 1, b.y + b.h); 114 gc.drawLine(b.x, b.y + 1, b.x + b.w, b.y + 1);
|
D | LinearLayoutRule.java | 389 gc.drawLine(b.x, i, b.x + b.w, i); 392 gc.drawLine(i, b.y, i, b.y + b.h); 416 gc.drawLine(fromX, y, toX, y); 421 gc.drawLine(x, fromY, x, toY);
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
D | ImageLoader.java | 201 gc.drawLine(0, 0, width, height); in createPlaceHolderArt() 202 gc.drawLine(0, height - 1, width, -1); in createPlaceHolderArt()
|
D | HeapPanel.java | 1275 gc.drawLine(0, 0, width-1, height-1); in renderHeapData()
|
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/ |
D | PixelPerfectLoupe.java | 263 gc.drawLine(x, 0, x, mCanvasHeight + mZoom); 266 gc.drawLine(0, y, mCanvasWidth + mZoom, y); 279 e.gc.drawLine(0, mCanvasHeight / 2, mCanvasWidth - 1, mCanvasHeight / 2); 280 e.gc.drawLine(mCanvasWidth / 2, 0, mCanvasWidth / 2, mCanvasHeight - 1);
|
D | PixelPerfect.java | 280 e.gc.drawLine(leftOffset, topOffset + mCrosshairLocation.y, leftOffset 282 e.gc.drawLine(leftOffset + mCrosshairLocation.x, topOffset, leftOffset
|
D | CaptureDisplay.java | 160 e.gc.drawLine(x, y + sViewNode.baseline, x + width - 1, sViewNode.baseline);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/ |
D | TestGraphics.java | 60 public void drawLine(int x1, int y1, int x2, int y2) { in drawLine() method in TestGraphics 65 public void drawLine(@NonNull Point p1, @NonNull Point p2) { in drawLine() method in TestGraphics
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
D | CaptureRenderer.java | 74 g.drawLine(0, node.baseline, width, node.baseline); in paintComponent()
|
D | ScreenViewer.java | 323 g2.drawLine(x, 0, x, height); in paintComponent() 327 g2.drawLine(0, y, width, y); in paintComponent() 544 g.drawLine(crosshair.x, 0, crosshair.x, height); in paint() 545 g.drawLine(0, crosshair.y, width, crosshair.y); in paint() 644 g.drawLine(insets.left + x, insets.top, insets.left + x, height - insets.bottom); in paint() 645 g.drawLine(insets.left, insets.top + y, width - insets.right, insets.top + y); in paint()
|
/sdk/traceview/src/com/android/traceview/ |
D | TimeLineView.java | 762 gcImage.drawLine(mMouse.x, timeLineOffsetY, mMouse.x, dim.y); in draw() 784 gc.drawLine(mMarkStartX, timeLineOffsetY, mMarkStartX, dim.y); in drawSelection() 850 gc.drawLine(LeftMargin, timeLineOffsetY, dim.x - RightMargin, in drawTicks() 869 gc.drawLine(x1, timeLineOffsetY, x1, y3); in drawTicks() 885 gc.drawLine(x1, timeLineOffsetY, x1, y2); in drawTicks() 902 gc.drawLine(x1, timeLineOffsetY, x1, y3); in drawTicks() 1188 gcImage.drawLine(0, y1, dim.x, y1); in draw() 1189 gcImage.drawLine(0, y1 + rowYSpace, dim.x, y1 + rowYSpace); in draw() 1198 gcImage.drawLine(mMouse.x, 0, mMouse.x, lineEnd); in draw() 1322 gc.drawLine(mMouseMarkStartX, 0, mMouseMarkStartX, dim.y); in drawSelection()
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/ |
D | DurationMinimap.java | 370 gc.drawLine(0, mMouseY, getClientArea().width, mMouseY); in drawMouseMarkers()
|