Searched refs:sharedX (Results 1 – 1 of 1) sorted by relevance
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/ |
D | ConstraintPainter.java | 641 int sharedX = targetX + targetMargins.right; in paintHorizontalConstraint() local 642 if (sourceX > sharedX + 2) { // Skip when source falls on the margin line in paintHorizontalConstraint() 644 graphics.drawLine(sharedX, targetBounds.y, sharedX, targetBounds.y2()); in paintHorizontalConstraint() 646 graphics.drawArrow(sourceX, center, sharedX + 2, center, ARROW_SIZE); in paintHorizontalConstraint() 647 graphics.drawArrow(targetX, center, sharedX - 3, center, ARROW_SIZE); in paintHorizontalConstraint() 656 int sharedX = targetX - targetMargins.left; in paintHorizontalConstraint() local 657 if (sourceX < sharedX - 2) { in paintHorizontalConstraint() 659 graphics.drawLine(sharedX, targetBounds.y, sharedX, targetBounds.y2()); in paintHorizontalConstraint() 661 graphics.drawArrow(sourceX, center, sharedX - 3, center, ARROW_SIZE); in paintHorizontalConstraint() 662 graphics.drawArrow(targetX, center, sharedX + 3, center, ARROW_SIZE); in paintHorizontalConstraint() [all …]
|