Home
last modified time | relevance | path

Searched refs:flexShrink (Results 1 – 6 of 6) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/frame/animation/
DCSSPropertyAnimation.cpp816 …xBasis() == b->flexBasis() && a->flexGrow() == b->flexGrow() && a->flexShrink() == b->flexShrink(); in equals()
823 dst->setFlexShrink(blendFunc(anim, a->flexShrink(), b->flexShrink(), progress)); in blend()
1070 …append(new PropertyWrapper<float>(CSSPropertyFlexShrink, &RenderStyle::flexShrink, &RenderStyle::s… in ensurePropertyMap()
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderFlexibleBox.cpp899 totalWeightedFlexShrink += child->style()->flexShrink() * childMainAxisExtent; in computeNextFlexLine()
913 totalWeightedFlexShrink -= child->style()->flexShrink() * preferredChildSize; in freezeViolations()
942 …extraSpace = availableFreeSpace * child->style()->flexShrink() * preferredChildSize / totalWeighte… in resolveFlexibleLengths()
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
DCSSAnimatableValueFactory.cpp314 …return createFromDouble(style.flexShrink(), AnimatableDouble::InterpolationIsNonContinuousWithZero… in create()
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSParser-in.cpp6530 double flexShrink = unsetValue; in parseFlex() local
6537 else if (flexShrink == unsetValue) in parseFlex()
6538 flexShrink = arg->fValue; in parseFlex()
6557 if (flexShrink == unsetValue) in parseFlex()
6558 flexShrink = 1; in parseFlex()
6563 …addProperty(CSSPropertyFlexShrink, cssValuePool().createValue(clampToFloat(flexShrink), CSSPrimiti… in parseFlex()
DCSSComputedStyleDeclaration.cpp1997 return cssValuePool().createValue(style->flexShrink()); in getPropertyCSSValue()
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DRenderStyle.h749 float flexShrink() const { return rareNonInheritedData->m_flexibleBox->m_flexShrink; } in flexShrink() function