Searched defs:computeLengthDouble (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSPrimitiveValue.cpp254 return roundForImpreciseConversion<int, INT_MAX, INT_MIN>(computeLengthDouble(style, rootStyle));
259 return roundForImpreciseConversion<int, INT_MAX, INT_MIN>(computeLengthDouble(style, rootStyle, multiplier));
266 return roundForImpreciseConversion<int, intMaxForLength, intMinForLength>(computeLengthDouble(style, rootStyle));
271 return roundForImpreciseConversion<int, intMaxForLength, intMinForLength>(computeLengthDouble(style, rootStyle, multiplier));
276 return roundForImpreciseConversion<short, SHRT_MAX, SHRT_MIN>(computeLengthDouble(style, rootStyle));
281 return roundForImpreciseConversion<short, SHRT_MAX, SHRT_MIN>(computeLengthDouble(style, rootStyle, multiplier));
286 return static_cast<float>(computeLengthDouble(style, rootStyle, 1.0, computingFontSize));
291 return static_cast<float>(computeLengthDouble(style, rootStyle, multiplier, computingFontSize));
294 double CSSPrimitiveValue::computeLengthDouble(RenderStyle* style, RenderStyle* rootStyle, double multiplier, bool computingFontSize) function in class:WebCore::CSSPrimitiveValue

Completed in 1202 milliseconds