Searched refs:flexShrink (Results 1 – 6 of 6) sorted by relevance
816 …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()
899 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()
314 …return createFromDouble(style.flexShrink(), AnimatableDouble::InterpolationIsNonContinuousWithZero… in create()
6530 double flexShrink = unsetValue; in parseFlex() local6537 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()
1997 return cssValuePool().createValue(style->flexShrink()); in getPropertyCSSValue()
749 float flexShrink() const { return rareNonInheritedData->m_flexibleBox->m_flexShrink; } in flexShrink() function