Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DConstraintPainter.java189 SegmentType targetSegmentTypeX = type.targetSegmentTypeX; in paintConstraint() local
193 if (sourceSegmentTypeX == CENTER_VERTICAL && targetSegmentTypeX == CENTER_VERTICAL) { in paintConstraint()
283 SegmentType targetSegmentTypeX = type.targetSegmentTypeX; in paintCornerConstraint() local
321 if (targetSegmentTypeX == UNKNOWN) { in paintCornerConstraint()
322 targetSegmentTypeX = pair.type.targetSegmentTypeX; in paintCornerConstraint()
339 if (targetSegmentTypeX == LEFT) { in paintCornerConstraint()
614 SegmentType targetSegmentTypeX = type.targetSegmentTypeX; in paintHorizontalConstraint() local
623 int targetX = targetSegmentTypeX == UNKNOWN ? in paintHorizontalConstraint()
624 sourceX : targetSegmentTypeX.getX(targetNode, targetBounds); in paintHorizontalConstraint()
640 if (targetSegmentTypeX == RIGHT && targetMargins.right > 5) { in paintHorizontalConstraint()
[all …]
DConstraintType.java84 SegmentType sourceSegmentTypeY, SegmentType targetSegmentTypeX, in ConstraintType() argument
92 this.targetSegmentTypeX = targetSegmentTypeX != null ? targetSegmentTypeX : UNKNOWN; in ConstraintType()
110 public final SegmentType targetSegmentTypeX; field in ConstraintType