Home
last modified time | relevance | path

Searched refs:rootElementStyle (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DPageRuleCollector.h35 PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex);
41 bool isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const;
42 …bool isRightPage(const RenderStyle* rootElementStyle, int pageIndex) const { return !isLeftPage(ro… in isRightPage() argument
DPageRuleCollector.cpp43 bool PageRuleCollector::isLeftPage(const RenderStyle* rootElementStyle, int pageIndex) const in isLeftPage() argument
46 ASSERT(rootElementStyle); in isLeftPage()
47 if (!rootElementStyle->isLeftToRightDirection()) in isLeftPage()
65 PageRuleCollector::PageRuleCollector(const RenderStyle* rootElementStyle, int pageIndex) in PageRuleCollector() argument
66 : m_isLeftPage(isLeftPage(rootElementStyle, pageIndex)) in PageRuleCollector()
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DStyleResolverState.h56 const RenderStyle* rootElementStyle() const { return m_elementContext.rootElementStyle(); } in rootElementStyle() function
DStyleResolverState.cpp35 , m_cssToLengthConversionData(0, rootElementStyle()) in StyleResolverState()
DElementResolveContext.h52 const RenderStyle* rootElementStyle() const { return m_rootElementStyle; } in rootElementStyle() function
DFontBuilder.h60 …void setFontSizeValue(CSSValue*, RenderStyle* parentStyle, const RenderStyle* rootElementStyle, fl…
DFontBuilder.cpp281 …Value(CSSValue* value, RenderStyle* parentStyle, const RenderStyle* rootElementStyle, float effect… in setFontSizeValue() argument
328 …veValue->computeLength<float>(CSSToLengthConversionData(parentStyle, rootElementStyle, 1.0, true)); in setFontSizeValue()
332 …>cssCalcValue()->toCalcValue(CSSToLengthConversionData(parentStyle, rootElementStyle, 1.0f))->eval… in setFontSizeValue()
DStyleResolver.cpp991 …const RenderStyle* rootElementStyle = state.rootElementStyle() ? state.rootElementStyle() : docume… in styleForPage() local
992 ASSERT(rootElementStyle); in styleForPage()
993 state.style()->inheritFrom(rootElementStyle); in styleForPage()
997 PageRuleCollector collector(rootElementStyle, pageIndex); in styleForPage()
DStyleBuilderCustom.cpp231 …state.fontBuilder().setFontSizeValue(value, state.parentStyle(), state.rootElementStyle(), state.s… in applyValueCSSPropertyFontSize()
606 …float docZoom = state.rootElementStyle() ? state.rootElementStyle()->zoom() : RenderStyle::initial… in applyValueCSSPropertyZoom()