Home | History | Annotate | Download | only in rendering

Lines Matching defs:renderView

58 #include "core/rendering/RenderView.h"
283 // Propagate the new writing mode and direction up to the RenderView.
284 RenderView* viewRenderer = view();
350 // The root and the RenderView always paint their backgrounds/borders.
650 RenderView* renderView = view();
652 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().width(), renderView);
653 return valueForLength(style()->boxReflect()->offset(), borderBoxRect().height(), renderView);
1553 if (RenderView* view = this->view())
1615 RenderView* renderView = view();
1618 LayoutUnit c = valueForLength(style()->clipLeft(), borderBoxRect.width(), renderView);
1627 clipRect.contract(width() - valueForLength(style()->clipRight(), width(), renderView), 0);
1630 LayoutUnit c = valueForLength(style()->clipTop(), borderBoxRect.height(), renderView);
1636 clipRect.contract(0, height() - valueForLength(style()->clipBottom(), height(), renderView));
1758 if (RenderView* v = view()) {
1932 RenderView* v = view();
1959 // RenderView::computeRectForRepaint then converts the rect to physical coordinates. We also convert to
1963 if (RenderView* v = view()) {
2154 RenderView* renderView = view();
2155 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth, renderView);
2156 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth, renderView);
2175 RenderView* renderView = view();
2176 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth, renderView);
2177 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth, renderView);
2221 RenderView* renderView = view();
2222 marginStart = minimumValueForLength(style()->marginStart(), availableLogicalWidth, renderView);
2223 marginEnd = minimumValueForLength(style()->marginEnd(), availableLogicalWidth, renderView);
2359 RenderView* renderView = view();
2363 marginStart = minimumValueForLength(marginStartLength, containerWidth, renderView);
2364 marginEnd = minimumValueForLength(marginEndLength, containerWidth, renderView);
2382 LayoutUnit marginStartWidth = minimumValueForLength(marginStartLength, containerWidth, renderView);
2383 LayoutUnit marginEndWidth = minimumValueForLength(marginEndLength, containerWidth, renderView);
2392 marginStart = valueForLength(marginStartLength, containerWidth, renderView);
2401 marginEnd = valueForLength(marginEndLength, containerWidth, renderView);
2408 marginStart = minimumValueForLength(marginStartLength, containerWidth, renderView);
2409 marginEnd = minimumValueForLength(marginEndLength, containerWidth, renderView);
2607 // height since we don't set a height in RenderView when we're printing. So without this quirk, the
2979 RenderView* renderView = view();
2981 marginBefore = minimumValueForLength(style()->marginBeforeUsing(containingBlockStyle), cw, renderView);
2982 marginAfter = minimumValueForLength(style()->marginAfterUsing(containingBlockStyle), cw, renderView);
3002 const RenderView* view = static_cast<const RenderView*>(containingBlock);
3064 const RenderView* view = static_cast<const RenderView*>(containingBlock);
3313 RenderView* renderView = view();
3333 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3334 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth, renderView));
3336 const LayoutUnit availableSpace = containerLogicalWidth - (logicalLeftValue + computedValues.m_extent + valueForLength(logicalRight, containerLogicalWidth, renderView) + bordersPlusPadding);
3357 marginLogicalRightValue = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3361 marginLogicalLeftValue = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3365 marginLogicalLeftValue = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3366 marginLogicalRightValue = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3416 marginLogicalLeftValue = minimumValueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3417 marginLogicalRightValue = minimumValueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3425 LayoutUnit logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3435 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3444 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth, renderView));
3445 logicalLeftValue = availableSpace - (computedValues.m_extent + valueForLength(logicalRight, containerLogicalWidth, renderView));
3448 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3449 computedValues.m_extent = availableSpace - (logicalLeftValue + valueForLength(logicalRight, containerLogicalWidth, renderView));
3452 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3453 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth, renderView));
3643 RenderView* renderView = view();
3655 resolvedLogicalHeight = adjustContentBoxLogicalHeightForBoxSizing(valueForLength(logicalHeightLength, containerLogicalHeight, renderView));
3670 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
3672 const LayoutUnit availableSpace = containerLogicalHeight - (logicalTopValue + logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight, renderView) + bordersPlusPadding);
3682 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
3686 computedValues.m_margins.m_before = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
3690 computedValues.m_margins.m_before = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
3691 computedValues.m_margins.m_after = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
3720 computedValues.m_margins.m_before = minimumValueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
3721 computedValues.m_margins.m_after = minimumValueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
3729 logicalTopValue = availableSpace - (logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight, renderView));
3732 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
3737 logicalTopValue = availableSpace - (logicalHeightValue + valueForLength(logicalBottom, containerLogicalHeight, renderView));
3740 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
3741 logicalHeightValue = max<LayoutUnit>(0, availableSpace - (logicalTopValue + valueForLength(logicalBottom, containerLogicalHeight, renderView)));
3745 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
3823 RenderView* renderView = view();
3829 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3830 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3853 marginLogicalLeftAlias = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3854 marginLogicalRightAlias = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3855 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3860 marginLogicalLeftAlias = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3861 marginLogicalRightAlias = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3862 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3867 marginLogicalRightAlias = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3868 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3869 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3874 marginLogicalLeftAlias = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3875 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3876 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3882 marginLogicalLeftAlias = valueForLength(marginLogicalLeft, containerRelativeLogicalWidth, renderView);
3883 marginLogicalRightAlias = valueForLength(marginLogicalRight, containerRelativeLogicalWidth, renderView);
3884 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth, renderView);
3885 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth, renderView);
3947 RenderView* renderView = view();
3991 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
3992 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight, renderView);
4004 marginBeforeAlias = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
4005 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
4006 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight, renderView);
4011 marginBeforeAlias = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
4012 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
4013 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
4019 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
4020 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
4021 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight, renderView);
4026 marginBeforeAlias = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
4027 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);
4028 logicalBottomValue = valueForLength(logicalBottom, containerLogicalHeight, renderView);
4034 marginBeforeAlias = valueForLength(marginBefore, containerRelativeLogicalWidth, renderView);
4035 marginAfterAlias = valueForLength(marginAfter, containerRelativeLogicalWidth, renderView);
4036 logicalTopValue = valueForLength(logicalTop, containerLogicalHeight, renderView);