Home
last modified time | relevance | path

Searched refs:undefinedLength (Results 1 – 19 of 19) sorted by relevance

/external/webkit/Source/WebCore/platform/
DLength.h33 const int undefinedLength = -1; variable
128 return undefinedLength;
158 return static_cast<float>(undefinedLength); in calcFloatValue()
162 bool isUndefined() const { return value() == undefinedLength; } in isUndefined()
/external/webkit/Source/WebCore/rendering/
DRenderSlider.cpp91 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderDataGrid.cpp115 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderFileUploadControl.cpp294 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderReplaced.cpp256 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) in computePreferredLogicalWidths()
DRenderMenuList.cpp269 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderImage.cpp543 int maxLogicalWidth = style()->maxWidth().value() == undefinedLength ? logicalWidth : in computeReplacedLogicalHeight()
DRenderTextControl.cpp588 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderListBox.cpp191 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderFlexibleBox.cpp201 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
DRenderBlock.cpp4647 …f (style()->logicalMaxWidth().isFixed() && style()->logicalMaxWidth().value() != undefinedLength) { in computePreferredLogicalWidths()
/external/webkit/Source/WebCore/rendering/svg/
DRenderSVGRoot.cpp67 if (style()->maxWidth().isFixed() && style()->maxWidth().value() != undefinedLength) in computePreferredLogicalWidths()
/external/webkit/Source/WebCore/css/
DCSSComputedStyleDeclaration.cpp1258 if (maxHeight.isFixed() && maxHeight.value() == undefinedLength) in getPropertyCSSValue()
1264 if (maxWidth.isFixed() && maxWidth.value() == undefinedLength) in getPropertyCSSValue()
DCSSStyleSelector.cpp4058 l = Length(undefinedLength, Fixed); in applyProperty()
4200 l = Length(undefinedLength, Fixed); in applyProperty()
/external/webkit/Source/WebCore/rendering/style/
DRenderStyle.h1281 static Length initialMaxSize() { return Length(undefinedLength, Fixed); } in initialMaxSize()
/external/webkit/Source/WebCore/accessibility/gtk/
DAccessibilityObjectWrapperAtk.cpp1316 if (indentation != undefinedLength) { in getAttributeSetForAccessibilityObject()
/external/webkit/Source/WebCore/
DChangeLog-2006-05-1010471 For max-height of none, set it to Length(undefinedLength, Fixed), which
DChangeLog-2011-02-162195 set it to Length(undefinedLength, Fixed), which is the correct
DChangeLog-2006-12-3140426 (WebCore::valueForLength): Added handling for undefinedLength, intrinsic,