Home | History | Annotate | Download | only in relative

Lines Matching refs:margins

59 import com.android.ide.common.api.Margins;
133 * edges, and top and bottom edges offset by the applicable margins in each direction
139 * right edges offset by the applicable margins in each direction
313 Margins margins = node.getMargins();
315 if (margins.top != 0) {
317 mHorizontalEdges.add(new Segment(b.y - margins.top, b.x, b.x2(), node, id,
322 if (margins.bottom != 0) {
325 mHorizontalEdges.add(new Segment(b.y2() + margins.bottom, b.x, b.x2(), node,
333 if (margins.left != 0) {
335 mVerticalEdges.add(new Segment(b.x - margins.left, b.y, b.y2(), node, id, LEFT,
341 if (margins.right != 0) {
344 mVerticalEdges.add(new Segment(b.x2() + margins.right, b.y, b.y2(), node, id,
420 // type, and only within the matching distance -- no margins!