Home
last modified time | relevance | path

Searched refs:drawLine (Results 1 – 14 of 14) sorted by relevance

/sdk/hierarchyviewer/src/com/android/hierarchyviewer/laf/
DUnifiedContentBorder.java30 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/
DGridLayoutPainter.java67 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/
DGCWrapper.java247 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/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DConstraintPainter.java445 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()
DGuidelinePainter.java93 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/
DAbsoluteLayoutRule.java121 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()
DBaseLayoutRule.java670 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);
DFrameLayoutRule.java113 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);
DLinearLayoutRule.java392 gc.drawLine(b.x, i, b.x + b.w, i);
395 gc.drawLine(i, b.y, i, b.y + b.h);
419 gc.drawLine(fromX, y, toX, y);
424 gc.drawLine(x, fromY, x, toY);
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/common/layout/
DTestGraphics.java60 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/
DCaptureRenderer.java74 g.drawLine(0, node.baseline, width, node.baseline); in paintComponent()
DScreenViewer.java322 g2.drawLine(x, 0, x, height); in paintComponent()
326 g2.drawLine(0, y, width, y); in paintComponent()
543 g.drawLine(crosshair.x, 0, crosshair.x, height); in paint()
544 g.drawLine(0, crosshair.y, width, crosshair.y); in paint()
643 g.drawLine(insets.left + x, insets.top, insets.left + x, height - insets.bottom); in paint()
644 g.drawLine(insets.left, insets.top + y, width - insets.right, insets.top + y); in paint()
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/draw9patch/ui/
DImageViewer.java710 gc.drawLine(x, 0, x, size.y);
711 gc.drawLine(0, y, size.x, y);
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/editors/
DDurationMinimap.java370 gc.drawLine(0, mMouseY, getClientArea().width, mMouseY); in drawMouseMarkers()