Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DConstraintPainter.java442 int sharedY = targetY + targetMargins.bottom; in paintVerticalConstraint() local
443 if (sourceY > sharedY + 2) { // Skip when source falls on the margin line in paintVerticalConstraint()
445 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY); in paintVerticalConstraint()
447 graphics.drawArrow(center, sourceY, center, sharedY + 2, ARROW_SIZE); in paintVerticalConstraint()
448 graphics.drawArrow(center, targetY, center, sharedY - 3, ARROW_SIZE); in paintVerticalConstraint()
457 int sharedY = targetY - targetMargins.top; in paintVerticalConstraint() local
458 if (sourceY < sharedY - 2) { in paintVerticalConstraint()
460 graphics.drawLine(targetBounds.x, sharedY, targetBounds.x2(), sharedY); in paintVerticalConstraint()
462 graphics.drawArrow(center, sourceY, center, sharedY - 3, ARROW_SIZE); in paintVerticalConstraint()
463 graphics.drawArrow(center, targetY, center, sharedY + 3, ARROW_SIZE); in paintVerticalConstraint()
[all …]