Home | History | Annotate | Download | only in relative

Lines Matching defs:baseline

19 import static com.android.ide.common.api.SegmentType.BASELINE;
49 * different segment types -- the left edge, the right edge, the baseline, the center
163 } else if (hEdge.edgeType == BASELINE) {
226 // Match baseline
228 int baseline = firstNode.getBaseline();
229 if (baseline != -1) {
230 mDraggedBaseline = baseline;
231 edge = new Segment(b.y + baseline, b.x, b.x2(), firstNode, null, BASELINE,
236 int baseline = feedback.dragBaseline;
237 if (baseline != -1) {
238 mDraggedBaseline = baseline;
239 edge = new Segment(offsetY + baseline, b.x, b.x2(), null, null, BASELINE,
270 || match.with.edgeType == BASELINE : match.with.edgeType;