HomeSort by relevance Sort by last modified time
    Searched refs:computingFontSize (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSToLengthConversionData.h 44 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, float zoom, bool computingFontSize = false);
45 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, const RenderView*, bool computingFontSize = false);
46 CSSToLengthConversionData(const RenderStyle* currStyle, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize = false);
51 bool computingFontSize() const { return m_computingFontSize; }
CSSToLengthConversionData.cpp 39 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, float zoom, bool computingFontSize)
46 , m_computingFontSize(computingFontSize)
51 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, const RenderView* renderView, bool computingFontSize)
57 , m_computingFontSize(computingFontSize)
61 CSSToLengthConversionData::CSSToLengthConversionData(const RenderStyle* style, const RenderStyle* rootStyle, float viewportWidth, float viewportHeight, float zoom, bool computingFontSize)
68 , m_computingFontSize(computingFontSize)
CSSPrimitiveValue.cpp 609 bool computingFontSize = conversionData.computingFontSize();
615 factor = computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().computedSize();
624 factor = (computingFontSize ? style.fontDescription().specifiedSize() : style.fontDescription().computedSize()) / 2.0;
628 factor = computingFontSize ? rootStyle->fontDescription().specifiedSize() : rootStyle->fontDescription().computedSize();
678 if (computingFontSize || isFontRelativeLength())
    [all...]

Completed in 363 milliseconds