margin           1216 Source/core/inspector/InspectorDOMAgent.cpp     highlightConfig->margin = parseConfigColor("marginColor", highlightInspectorObject);
margin             64 Source/core/inspector/InspectorOverlay.h     Color margin;
margin             88 Source/core/inspector/InspectorOverlay.h         marginColor = highlightConfig.margin;
margin           1613 Source/core/rendering/RenderBlock.cpp     LayoutUnit margin = 0;
margin           1615 Source/core/rendering/RenderBlock.cpp         margin += marginLeft.value();
margin           1617 Source/core/rendering/RenderBlock.cpp         margin += marginRight.value();
margin           1618 Source/core/rendering/RenderBlock.cpp     return margin;
margin           3625 Source/core/rendering/RenderBlock.cpp         LayoutUnit margin = 0;
margin           3632 Source/core/rendering/RenderBlock.cpp         margin = marginStart + marginEnd;
margin           3645 Source/core/rendering/RenderBlock.cpp         LayoutUnit w = childMinPreferredLogicalWidth + margin;
margin           3652 Source/core/rendering/RenderBlock.cpp         w = childMaxPreferredLogicalWidth + margin;
margin           1136 Source/core/rendering/RenderBlockFlow.cpp             ASSERT(!marginInfo.discardMargin() || (marginInfo.discardMargin() && !marginInfo.margin()));
margin           1140 Source/core/rendering/RenderBlockFlow.cpp             LayoutUnit separateMargin = !marginInfo.canCollapseWithMarginBefore() ? marginInfo.margin() : LayoutUnit(0);
margin           1161 Source/core/rendering/RenderBlockFlow.cpp         if (marginInfo.margin())
margin           1451 Source/core/rendering/RenderBlockFlow.cpp     LayoutUnit marginOffset = marginInfo.canCollapseWithMarginBefore() ? LayoutUnit() : marginInfo.margin();
margin           1473 Source/core/rendering/RenderBlockFlow.cpp         setLogicalHeight(logicalHeight() + marginInfo.margin());
margin           1635 Source/core/rendering/RenderBlockFlow.cpp         LayoutUnit marginOffset = marginInfo.canCollapseWithMarginBefore() ? LayoutUnit() : marginInfo.margin();
margin            287 Source/core/rendering/RenderBox.h     void setMarginTop(LayoutUnit margin) { m_marginBox.setTop(margin); }
margin            288 Source/core/rendering/RenderBox.h     void setMarginBottom(LayoutUnit margin) { m_marginBox.setBottom(margin); }
margin            289 Source/core/rendering/RenderBox.h     void setMarginLeft(LayoutUnit margin) { m_marginBox.setLeft(margin); }
margin            290 Source/core/rendering/RenderBox.h     void setMarginRight(LayoutUnit margin) { m_marginBox.setRight(margin); }
margin            157 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp     LayoutUnit margin = 0;
margin            159 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp         margin += marginLeft.value();
margin            161 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp         margin += marginRight.value();
margin            162 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp     return margin;
margin            201 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             LayoutUnit margin = marginWidthForChild(child);
margin            202 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             LayoutUnit width = child->minPreferredLogicalWidth() + margin;
margin            205 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             width = child->maxPreferredLogicalWidth() + margin;
margin            213 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             LayoutUnit margin = marginWidthForChild(child);
margin            214 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             minLogicalWidth += child->minPreferredLogicalWidth() + margin;
margin            215 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp             maxLogicalWidth += child->maxPreferredLogicalWidth() + margin;
margin            104 Source/core/rendering/RenderFlexibleBox.cpp         LayoutUnit margin = marginIntrinsicLogicalWidthForChild(child);
margin            108 Source/core/rendering/RenderFlexibleBox.cpp         minPreferredLogicalWidth += margin;
margin            109 Source/core/rendering/RenderFlexibleBox.cpp         maxPreferredLogicalWidth += margin;
margin            833 Source/core/rendering/RenderFlexibleBox.cpp LayoutUnit RenderFlexibleBox::computeChildMarginValue(Length margin)
margin            838 Source/core/rendering/RenderFlexibleBox.cpp     return minimumValueForLength(margin, availableSize);
margin            138 Source/core/rendering/RenderFlexibleBox.h     LayoutUnit computeChildMarginValue(Length margin);
margin            689 Source/core/rendering/RenderInline.cpp static LayoutUnit computeMargin(const RenderInline* renderer, const Length& margin)
margin            691 Source/core/rendering/RenderInline.cpp     if (margin.isAuto())
margin            693 Source/core/rendering/RenderInline.cpp     if (margin.isFixed())
margin            694 Source/core/rendering/RenderInline.cpp         return margin.value();
margin            695 Source/core/rendering/RenderInline.cpp     if (margin.isPercent())
margin            696 Source/core/rendering/RenderInline.cpp         return minimumValueForLength(margin, max<LayoutUnit>(0, renderer->containingBlock()->availableLogicalWidth()));
margin            129 Source/core/rendering/shapes/PolygonShape.cpp static inline PassOwnPtr<FloatPolygon> computeShapeMarginBounds(const FloatPolygon& polygon, float margin, WindRule fillRule)
margin            137 Source/core/rendering/shapes/PolygonShape.cpp         OffsetPolygonEdge thisOffsetEdge(thisEdge, outwardEdgeNormal(thisEdge) * margin);
margin            138 Source/core/rendering/shapes/PolygonShape.cpp         OffsetPolygonEdge prevOffsetEdge(prevEdge, outwardEdgeNormal(prevEdge) * margin);
margin            143 Source/core/rendering/shapes/PolygonShape.cpp             appendArc(*marginVertices, thisEdge.vertex1(), margin, prevOffsetEdge.vertex2(), thisOffsetEdge.vertex1(), false);
margin             97 Source/core/rendering/shapes/Shape.cpp PassOwnPtr<Shape> Shape::createShape(const BasicShape* basicShape, const LayoutSize& logicalBoxSize, WritingMode writingMode, Length margin)
margin            172 Source/core/rendering/shapes/Shape.cpp     shape->m_margin = floatValueForLength(margin, 0);
margin            177 Source/core/rendering/shapes/Shape.cpp PassOwnPtr<Shape> Shape::createRasterShape(Image* image, float threshold, const LayoutRect& imageR, const LayoutRect& marginR, WritingMode writingMode, Length margin)
margin            214 Source/core/rendering/shapes/Shape.cpp     rasterShape->m_margin = floatValueForLength(margin, 0);
margin            218 Source/core/rendering/shapes/Shape.cpp PassOwnPtr<Shape> Shape::createLayoutBoxShape(const RoundedRect& roundedRect, WritingMode writingMode, const Length& margin)
margin            224 Source/core/rendering/shapes/Shape.cpp     shape->m_margin = floatValueForLength(margin, 0);
margin             64 Source/core/rendering/shapes/Shape.h     static PassOwnPtr<Shape> createShape(const BasicShape*, const LayoutSize& logicalBoxSize, WritingMode, Length margin);
margin             65 Source/core/rendering/shapes/Shape.h     static PassOwnPtr<Shape> createRasterShape(Image*, float threshold, const LayoutRect& imageRect, const LayoutRect& marginRect, WritingMode, Length margin);
margin             66 Source/core/rendering/shapes/Shape.h     static PassOwnPtr<Shape> createLayoutBoxShape(const RoundedRect&, WritingMode, const Length& margin);
margin            115 Source/core/rendering/shapes/ShapeInfo.cpp     Length margin = m_renderer.style()->shapeMargin();
margin            123 Source/core/rendering/shapes/ShapeInfo.cpp         m_shape = Shape::createShape(shapeValue->shape(), m_referenceBoxLogicalSize, writingMode, margin);
margin            130 Source/core/rendering/shapes/ShapeInfo.cpp         m_shape = Shape::createRasterShape(image, shapeImageThreshold, imageRect, marginRect, writingMode, margin);
margin            135 Source/core/rendering/shapes/ShapeInfo.cpp         m_shape = Shape::createLayoutBoxShape(shapeRect, writingMode, margin);
margin            402 Source/core/rendering/style/RenderStyle.cpp         if (surround->margin != other.surround->margin)
margin           1548 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setMarginStart(Length margin)
margin           1552 Source/core/rendering/style/RenderStyle.cpp             setMarginLeft(margin);
margin           1554 Source/core/rendering/style/RenderStyle.cpp             setMarginRight(margin);
margin           1557 Source/core/rendering/style/RenderStyle.cpp             setMarginTop(margin);
margin           1559 Source/core/rendering/style/RenderStyle.cpp             setMarginBottom(margin);
margin           1563 Source/core/rendering/style/RenderStyle.cpp void RenderStyle::setMarginEnd(Length margin)
margin           1567 Source/core/rendering/style/RenderStyle.cpp             setMarginRight(margin);
margin           1569 Source/core/rendering/style/RenderStyle.cpp             setMarginLeft(margin);
margin           1572 Source/core/rendering/style/RenderStyle.cpp             setMarginBottom(margin);
margin           1574 Source/core/rendering/style/RenderStyle.cpp             setMarginTop(margin);
margin            398 Source/core/rendering/style/RenderStyle.h     bool hasMargin() const { return surround->margin.nonZero(); }
margin            698 Source/core/rendering/style/RenderStyle.h     const Length& marginTop() const { return surround->margin.top(); }
margin            699 Source/core/rendering/style/RenderStyle.h     const Length& marginBottom() const { return surround->margin.bottom(); }
margin            700 Source/core/rendering/style/RenderStyle.h     const Length& marginLeft() const { return surround->margin.left(); }
margin            701 Source/core/rendering/style/RenderStyle.h     const Length& marginRight() const { return surround->margin.right(); }
margin            702 Source/core/rendering/style/RenderStyle.h     const Length& marginBefore() const { return surround->margin.before(writingMode()); }
margin            703 Source/core/rendering/style/RenderStyle.h     const Length& marginAfter() const { return surround->margin.after(writingMode()); }
margin            704 Source/core/rendering/style/RenderStyle.h     const Length& marginStart() const { return surround->margin.start(writingMode(), direction()); }
margin            705 Source/core/rendering/style/RenderStyle.h     const Length& marginEnd() const { return surround->margin.end(writingMode(), direction()); }
margin            706 Source/core/rendering/style/RenderStyle.h     const Length& marginStartUsing(const RenderStyle* otherStyle) const { return surround->margin.start(otherStyle->writingMode(), otherStyle->direction()); }
margin            707 Source/core/rendering/style/RenderStyle.h     const Length& marginEndUsing(const RenderStyle* otherStyle) const { return surround->margin.end(otherStyle->writingMode(), otherStyle->direction()); }
margin            708 Source/core/rendering/style/RenderStyle.h     const Length& marginBeforeUsing(const RenderStyle* otherStyle) const { return surround->margin.before(otherStyle->writingMode()); }
margin            709 Source/core/rendering/style/RenderStyle.h     const Length& marginAfterUsing(const RenderStyle* otherStyle) const { return surround->margin.after(otherStyle->writingMode()); }
margin           1189 Source/core/rendering/style/RenderStyle.h     void resetMargin() { SET_VAR(surround, margin, LengthBox(Fixed)); }
margin           1190 Source/core/rendering/style/RenderStyle.h     void setMarginTop(Length v) { SET_VAR(surround, margin.m_top, v); }
margin           1191 Source/core/rendering/style/RenderStyle.h     void setMarginBottom(Length v) { SET_VAR(surround, margin.m_bottom, v); }
margin           1192 Source/core/rendering/style/RenderStyle.h     void setMarginLeft(Length v) { SET_VAR(surround, margin.m_left, v); }
margin           1193 Source/core/rendering/style/RenderStyle.h     void setMarginRight(Length v) { SET_VAR(surround, margin.m_right, v); }
margin             28 Source/core/rendering/style/StyleSurroundData.cpp     : margin(Fixed)
margin             36 Source/core/rendering/style/StyleSurroundData.cpp     , margin(o.margin)
margin             44 Source/core/rendering/style/StyleSurroundData.cpp     return offset == o.offset && margin == o.margin && padding == o.padding && border == o.border;
margin             47 Source/core/rendering/style/StyleSurroundData.h     LengthBox margin;