Home | History | Annotate | Download | only in rendering

Lines Matching refs:containerLogicalWidth

1936     LayoutUnit containerLogicalWidth = std::max<LayoutUnit>(0, containingBlockLogicalWidthForContent());
1941 computedValues.m_margins.m_start = minimumValueForLength(styleToUse->marginStart(), containerLogicalWidth);
1942 computedValues.m_margins.m_end = minimumValueForLength(styleToUse->marginEnd(), containerLogicalWidth);
1952 LayoutUnit containerWidthInInlineDirection = containerLogicalWidth;
1960 computeMarginsForDirection(InlineDirection, cb, containerLogicalWidth, computedValues.m_extent, computedValues.m_margins.m_start,
1963 if (!hasPerpendicularContainingBlock && containerLogicalWidth && containerLogicalWidth != (computedValues.m_extent + computedValues.m_margins.m_start + computedValues.m_margins.m_end)
1965 LayoutUnit newMargin = containerLogicalWidth - computedValues.m_extent - cb->marginStartForChild(this);
2503 Length containerLogicalWidth = containingBlock()->style()->logicalWidth();
2508 if (cw > 0 || (!cw && (containerLogicalWidth.isFixed() || containerLogicalWidth.isPercent())))
2770 static void computeInlineStaticDistance(Length& logicalLeft, Length& logicalRight, const RenderBox* child, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalWidth)
2795 LayoutUnit staticPosition = child->layer()->staticInlinePosition() + containerLogicalWidth + containerBlock->borderLogicalLeft();
2847 const LayoutUnit containerLogicalWidth = containingBlockLogicalWidthForPositioned(containerBlock);
2888 computeInlineStaticDistance(logicalLeftLength, logicalRightLength, this, containerBlock, containerLogicalWidth);
2892 containerLogicalWidth, bordersPlusPadding,
2901 containerLogicalWidth, bordersPlusPadding,
2918 containerLogicalWidth, bordersPlusPadding,
2933 static void computeLogicalLeftPositionedOffset(LayoutUnit& logicalLeftPos, const RenderBox* child, LayoutUnit logicalWidthValue, const RenderBoxModelObject* containerBlock, LayoutUnit containerLogicalWidth)
2938 logicalLeftPos = containerLogicalWidth - logicalWidthValue - logicalLeftPos;
2955 LayoutUnit containerLogicalWidth, LayoutUnit bordersPlusPadding,
2960 logicalWidth = Length(computeIntrinsicLogicalWidthUsing(logicalWidth, containerLogicalWidth, bordersPlusPadding) - bordersPlusPadding, Fixed);
2991 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
2992 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth));
2994 const LayoutUnit availableSpace = containerLogicalWidth - (logicalLeftValue + computedValues.m_extent + valueForLength(logicalRight, containerLogicalWidth) + bordersPlusPadding);
3077 const LayoutUnit availableSpace = containerLogicalWidth - (marginLogicalLeftValue + marginLogicalRightValue + bordersPlusPadding);
3083 LayoutUnit logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3093 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3098 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth));
3099 logicalLeftValue = availableSpace - (computedValues.m_extent + valueForLength(logicalRight, containerLogicalWidth));
3102 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3106 computedValues.m_extent = std::max<LayoutUnit>(0, availableSpace - (logicalLeftValue + valueForLength(logicalRight, containerLogicalWidth)));
3109 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3110 computedValues.m_extent = adjustContentBoxLogicalWidthForBoxSizing(valueForLength(logicalWidth, containerLogicalWidth));
3135 computeLogicalLeftPositionedOffset(computedValues.m_position, this, computedValues.m_extent, containerBlock, containerLogicalWidth);
3408 const LayoutUnit containerLogicalWidth = containingBlockLogicalWidthForPositioned(containerBlock);
3433 const LayoutUnit availableSpace = containerLogicalWidth - computedValues.m_extent;
3441 computeInlineStaticDistance(logicalLeft, logicalRight, this, containerBlock, containerLogicalWidth);
3469 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3470 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3495 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3502 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3508 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3509 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3515 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3516 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3524 logicalRightValue = valueForLength(logicalRight, containerLogicalWidth);
3525 logicalLeftValue = valueForLength(logicalLeft, containerLogicalWidth);
3529 logicalLeftValue = containerLogicalWidth - (totalLogicalWidth - logicalLeftValue);
3561 computeLogicalLeftPositionedOffset(logicalLeftPos, this, computedValues.m_extent, containerBlock, containerLogicalWidth);