Home
last modified time | relevance | path

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

/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DConstraintPainter.java187 SegmentType sourceSegmentTypeX = type.sourceSegmentTypeX; in paintConstraint() local
193 if (sourceSegmentTypeX == CENTER_VERTICAL && targetSegmentTypeX == CENTER_VERTICAL) { in paintConstraint()
215 if (sourceSegmentTypeX == UNKNOWN) { in paintConstraint()
281 SegmentType sourceSegmentTypeX = type.sourceSegmentTypeX; in paintCornerConstraint() local
315 if (sourceSegmentTypeX == UNKNOWN) { in paintCornerConstraint()
316 sourceSegmentTypeX = pair.type.sourceSegmentTypeX; in paintCornerConstraint()
329 if (sourceSegmentTypeX == LEFT) { in paintCornerConstraint()
613 SegmentType sourceSegmentTypeX = type.sourceSegmentTypeX; in paintHorizontalConstraint() local
617 assert sourceSegmentTypeX != UNKNOWN; in paintHorizontalConstraint()
622 int sourceX = sourceSegmentTypeX.getX(sourceNode, sourceBounds); in paintHorizontalConstraint()
[all …]
DConstraintType.java83 private ConstraintType(String name, SegmentType sourceSegmentTypeX, in ConstraintType() argument
90 this.sourceSegmentTypeX = sourceSegmentTypeX != null ? sourceSegmentTypeX : UNKNOWN; in ConstraintType()
104 public final SegmentType sourceSegmentTypeX; field in ConstraintType