Searched refs:isAuto (Results 1 - 25 of 46) sorted by relevance

12

/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DOutlineValue.h51 OutlineIsAuto isAuto() const { return static_cast<OutlineIsAuto>(m_isAuto); } function in class:WebCore::OutlineValue
H A DTextSizeAdjustment.h36 bool isAuto() const { return m_value == AutoTextSizeAdjustment; } function in class:TextSizeAdjustment
H A DGridPosition.h59 bool isAuto() const { return m_type == AutoPosition; } function in class:WebCore::GridPosition
117 return isAuto() || isSpan();
H A DGridLength.h78 bool isContentSized() const { return m_type == LengthType && (m_length.isAuto() || m_length.isMinContent() || m_length.isMaxContent()); }
H A DGridTrackSize.h74 if (m_minTrackBreadth.isLength() && m_minTrackBreadth.length().isAuto()) {
84 if (m_maxTrackBreadth.isLength() && m_maxTrackBreadth.length().isAuto()) {
H A DGridResolvedPosition.cpp113 if (initialPosition.isAuto() && finalPosition.isSpan() && !finalPosition.namedGridLine().isNull())
115 if (finalPosition.isAuto() && initialPosition.isSpan() && !initialPosition.namedGridLine().isNull())
239 if (position.isAuto())
/macosx-10.10/WebCore-7600.1.25/rendering/
H A DRenderBox.cpp1758 if (!style().clipLeft().isAuto()) {
1767 if (!style().clipRight().isAuto())
1770 if (!style().clipTop().isAuto()) {
1776 if (!style().clipBottom().isAuto())
2502 if ((marginStartLength.isAuto() && marginEndLength.isAuto() && childWidth < containerWidth)
2503 || (!marginStartLength.isAuto() && !marginEndLength.isAuto() && containingBlock->style().textAlign() == WEBKIT_CENTER)) {
2514 if (marginEndLength.isAuto() && childWidth < containerWidth) {
2521 bool pushToEndFromTextAlign = !marginEndLength.isAuto()
[all...]
H A DRenderFullScreen.cpp190 if (style.get().width().isAuto())
192 if (style.get().height().isAuto())
H A DFixedTableLayout.cpp153 if (m_width[currentColumn].isAuto() && logicalWidth.type() != Auto) {
232 } else if (m_width[i].isAuto()) {
271 if (m_width[i].isAuto()) {
H A DRenderFlexibleBox.cpp407 if (flexLength.isAuto())
671 if (flexBasis.isAuto() || (flexBasis.isFixed() && !flexBasis.value() && hasInfiniteLineLength)) {
732 if (child->style().marginLeft().isAuto())
734 if (child->style().marginRight().isAuto())
737 if (child->style().marginTop().isAuto())
739 if (child->style().marginBottom().isAuto())
756 if (child.style().marginLeft().isAuto())
758 if (child.style().marginRight().isAuto())
761 if (child.style().marginTop().isAuto())
763 if (child.style().marginBottom().isAuto())
[all...]
H A DAutoTableLayout.cpp159 if (colLogicalWidth.isAuto())
165 if (!colLogicalWidth.isAuto() && span == 1 && effCol < nEffCols && m_table->spanOfEffCol(effCol) == 1) {
190 if ((tw.isAuto() || tw.isPercent()) && !table->isOutOfFlowPositioned()) {
193 cb->style().width().isAuto() && !cb->isOutOfFlowPositioned())
198 (cb->style().width().isAuto() || cb->style().width().isPercent())) {
200 if (cell->colSpan() > 1 || cell->table()->style().width().isAuto())
596 if (logicalWidth.isAuto() && totalAuto && !m_layoutStruct[i].emptyCellsOnly) {
640 if (m_layoutStruct[i].effectiveLogicalWidth.isAuto() && m_layoutStruct[i].emptyCellsOnly)
663 if (logicalWidth.isAuto())
670 if (logicalWidth.isAuto()) {
[all...]
H A DRenderReplaced.cpp260 if (style().logicalWidth().isAuto())
268 if (style().logicalHeight().isAuto())
316 if (intrinsicRatio && !intrinsicSize.isEmpty() && style().logicalWidth().isAuto() && style().logicalHeight().isAuto()) {
384 if (style().logicalWidth().isAuto()) {
449 bool widthIsAuto = style().logicalWidth().isAuto();
H A DRenderBoxModelObject.cpp230 if (logicalHeightLength.isAuto())
257 if (cb->isOutOfFlowPositioned() && !cb->style().logicalTop().isAuto() && !cb->style().logicalBottom().isAuto())
274 if (!style().left().isAuto()) {
275 if (!style().right().isAuto() && !containingBlock->style().isLeftToRightDirection())
279 } else if (!style().right().isAuto()) {
289 if (!style().top().isAuto()
295 else if (!style().bottom().isAuto()
418 if (!style().left().isAuto()) {
423 if (!style().right().isAuto()) {
[all...]
H A DRenderTextControlSingleLine.cpp131 if (innerTextRenderer && !innerTextRenderer->style().logicalHeight().isAuto()) {
135 if (innerBlockRenderer && !innerBlockRenderer->style().logicalHeight().isAuto()) {
H A DRenderMarquee.cpp226 if (!isHorizontal() && style.height().isAuto())
H A DRenderScrollbarPart.cpp84 if (!length.isIntrinsicOrAuto() || (sizeType == MinSize && length.isAuto()))
H A DRenderTableCell.h91 if (!styleWidth.isAuto())
H A DTextAutoSizing.cpp122 if (!text || !text->style().textSizeAdjust().isAuto() || !text->candidateComputedTextSize()) {
H A DRenderDeprecatedFlexibleBox.cpp945 || (child->style().height().isAuto() && child->isRenderBlockFlow())) {
955 if (child->style().height().isAuto() && child->isRenderBlockFlow())
967 if (childDoesNotAffectWidthOrFlexing(child) || !child->style().height().isAuto() || !child->isRenderBlockFlow())
1045 || (child->style().height().isAuto() && child->isRenderBlock())) {
1112 if (minHeight.isFixed() || minHeight.isAuto()) {
H A DRenderThemeSafari.cpp387 if (style.height().isAuto() && size.height() > 0)
451 if (!style.width().isIntrinsicOrAuto() && !style.height().isAuto())
490 if (!style.width().isIntrinsicOrAuto() && !style.height().isAuto())
575 if (!style.width().isIntrinsicOrAuto() && !style.height().isAuto())
1037 if (!style.width().isIntrinsicOrAuto() && !style.height().isAuto())
/macosx-10.10/WebCore-7600.1.25/platform/
H A DLength.h82 bool isAuto() const;
306 inline bool Length::isAuto() const function in class:WebCore::Length
387 return isAuto() || isIntrinsic() || isLegacyIntrinsic();
/macosx-10.10/WebCore-7600.1.25/css/
H A DElementRuleCollector.cpp396 bool isAuto; local
397 TextDirection textDirection = toHTMLElement(styledElement).directionalityIfhasDirAutoAttribute(isAuto);
398 if (isAuto)
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLElement.h89 TextDirection directionalityIfhasDirAutoAttribute(bool& isAuto) const;
H A DHTMLTextFormControlElement.cpp744 bool isAuto; local
745 TextDirection textDirection = static_cast<const HTMLElement*>(element)->directionalityIfhasDirAutoAttribute(isAuto);
H A DHTMLElement.cpp861 TextDirection HTMLElement::directionalityIfhasDirAutoAttribute(bool& isAuto) const
864 isAuto = false;
868 isAuto = true;

Completed in 241 milliseconds

12