Home | History | Annotate | Download | only in rendering

Lines Matching refs:m_margins

1866     setMarginStart(computedValues.m_margins.m_start);
1867 setMarginEnd(computedValues.m_margins.m_end);
1903 computedValues.m_margins.m_start = marginStart();
1904 computedValues.m_margins.m_end = marginEnd();
1941 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth);
1942 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth);
1960 computeMarginsForDirection(InlineDirection, cb, containerLogicalWidth, computedValues.m_extent, computedValues.m_margins.m_start,
1961 computedValues.m_margins.m_end, style()->marginStart(), style()->marginEnd());
1963 if (!hasPerpendicularContainingBlock && containerLogicalWidth && containerLogicalWidth != (computedValues.m_extent + computedValues.m_margins.m_start + computedValues.m_margins.m_end)
1968 computedValues.m_margins.m_start = newMargin;
1970 computedValues.m_margins.m_end = newMargin;
1980 computedValues.m_margins.m_end += adjustedMargin;
1982 computedValues.m_margins.m_start += adjustedMargin;
2216 setMarginBefore(computedValues.m_margins.m_before);
2217 setMarginAfter(computedValues.m_margins.m_after);
2244 computeMarginsForDirection(flowDirection, cb, containingBlockLogicalWidthForContent(), computedValues.m_extent, computedValues.m_margins.m_before,
2245 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2292 computeMarginsForDirection(flowDirection, cb, containingBlockLogicalWidthForContent(), computedValues.m_extent, computedValues.m_margins.m_before,
2293 computedValues.m_margins.m_after, style()->marginBefore(), style()->marginAfter());
2908 computedValues.m_margins.m_start = maxValues.m_margins.m_start;
2909 computedValues.m_margins.m_end = maxValues.m_margins.m_end;
2925 computedValues.m_margins.m_start = minValues.m_margins.m_start;
2926 computedValues.m_margins.m_end = minValues.m_margins.m_end;
2973 LayoutUnit& marginLogicalLeftValue = style()->isLeftToRightDirection() ? computedValues.m_margins.m_start : computedValues.m_margins.m_end;
2974 LayoutUnit& marginLogicalRightValue = style()->isLeftToRightDirection() ? computedValues.m_margins.m_end : computedValues.m_margins.m_start;
3219 computedValues.m_margins.m_before = maxValues.m_margins.m_before;
3220 computedValues.m_margins.m_after = maxValues.m_margins.m_after;
3235 computedValues.m_margins.m_before = minValues.m_margins.m_before;
3236 computedValues.m_margins.m_after = minValues.m_margins.m_after;
3319 computedValues.m_margins.m_before = availableSpace / 2; // split the difference
3320 computedValues.m_margins.m_after = availableSpace - computedValues.m_margins.m_before; // account for odd valued differences
3323 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
3324 computedValues.m_margins.m_before = availableSpace - computedValues.m_margins.m_after;
3327 computedValues.m_margins.m_before = valueForLength(marginBefore, containerRelativeLogicalWidth);
3328 computedValues.m_margins.m_after = availableSpace - computedValues.m_margins.m_before;
3331 computedValues.m_margins.m_before = valueForLength(marginBefore, containerRelativeLogicalWidth);
3332 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth);
3361 computedValues.m_margins.m_before = minimumValueForLength(marginBefore, containerRelativeLogicalWidth);
3362 computedValues.m_margins.m_after = minimumValueForLength(marginAfter, containerRelativeLogicalWidth);
3364 const LayoutUnit availableSpace = containerLogicalHeight - (computedValues.m_margins.m_before + computedValues.m_margins.m_after + bordersPlusPadding);
3392 computedValues.m_position = logicalTopValue + computedValues.m_margins.m_before;
3421 LayoutUnit& marginLogicalLeftAlias = style()->isLeftToRightDirection() ? computedValues.m_margins.m_start : computedValues.m_margins.m_end;
3422 LayoutUnit& marginLogicalRightAlias = style()->isLeftToRightDirection() ? computedValues.m_margins.m_end : computedValues.m_margins.m_start;
3582 LayoutUnit& marginBeforeAlias = computedValues.m_margins.m_before;
3583 LayoutUnit& marginAfterAlias = computedValues.m_margins.m_after;