Home
last modified time | relevance | path

Searched refs:computeLengthPx (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSCalculationValue.h71 virtual double computeLengthPx(const CSSToLengthConversionData&) const = 0;
113 double computeLengthPx(const CSSToLengthConversionData&) const;
DCSSCalculationValue.cpp181 double CSSCalcValue::computeLengthPx(const CSSToLengthConversionData& conversionData) const in computeLengthPx() function in WebCore::CSSCalcValue
183 return clampToPermittedRange(m_expression->computeLengthPx(conversionData)); in computeLengthPx()
258 virtual double computeLengthPx(const CSSToLengthConversionData& conversionData) const in computeLengthPx() function in WebCore::CSSCalcPrimitiveValue
439 virtual double computeLengthPx(const CSSToLengthConversionData& conversionData) const in computeLengthPx() function in WebCore::CSSCalcBinaryOperation
441 const double leftValue = m_leftSide->computeLengthPx(conversionData); in computeLengthPx()
442 const double rightValue = m_rightSide->computeLengthPx(conversionData); in computeLengthPx()
DCSSPrimitiveValue.cpp558 return m_value.calc->computeLengthPx(conversionData); in computeLengthDouble()