Searched refs:fontBuilder (Results 1 – 6 of 6) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | StyleBuilderCustom.cpp | 206 state.fontBuilder().setFontFamilyInitial(state.style()->effectiveZoom()); in applyInitialCSSPropertyFontFamily() 211 state.fontBuilder().setFontFamilyInherit(state.parentFontDescription()); in applyInheritCSSPropertyFontFamily() 216 state.fontBuilder().setFontFamilyValue(value, state.style()->effectiveZoom()); in applyValueCSSPropertyFontFamily() 221 state.fontBuilder().setFontSizeInitial(state.style()->effectiveZoom()); in applyInitialCSSPropertyFontSize() 226 …state.fontBuilder().setFontSizeInherit(state.parentFontDescription(), state.style()->effectiveZoom… in applyInheritCSSPropertyFontSize() 231 …state.fontBuilder().setFontSizeValue(value, state.parentStyle(), state.rootElementStyle(), state.s… in applyValueCSSPropertyFontSize() 236 state.fontBuilder().setWeight(FontWeightNormal); in applyInitialCSSPropertyFontWeight() 241 state.fontBuilder().setWeight(state.parentFontDescription().weight()); in applyInheritCSSPropertyFontWeight() 254 state.fontBuilder().setWeightBolder(); in applyValueCSSPropertyFontWeight() 257 state.fontBuilder().setWeightLighter(); in applyValueCSSPropertyFontWeight() [all …]
|
D | StyleResolver.cpp | 685 … state.fontBuilder().initForStyleResolve(state.document(), state.style(), state.useSVGZoomRules()); in styleForElement() 770 … state.fontBuilder().initForStyleResolve(state.document(), state.style(), state.useSVGZoomRules()); in styleForKeyframe() 928 … state.fontBuilder().initForStyleResolve(state.document(), state.style(), state.useSVGZoomRules()); in pseudoStyleForElementInternal() 995 … state.fontBuilder().initForStyleResolve(state.document(), state.style(), state.useSVGZoomRules()); in styleForPage() 1052 state.fontBuilder().initForStyleResolve(document(), state.style(), state.useSVGZoomRules()); in defaultStyleForElement() 1055 state.fontBuilder().setInitial(state.style()->effectiveZoom()); in defaultStyleForElement() 1084 …state.fontBuilder().createFont(document().styleEngine()->fontSelector(), state.parentStyle(), stat… in updateFont() 1402 state.fontBuilder().setFontDirty(true); in applyMatchedProperties() 1438 ASSERT(!state.fontBuilder().fontDirty()); in applyMatchedProperties() 1479 state.fontBuilder().initForStyleResolve(document(), style, state.useSVGZoomRules()); in applyPropertiesToStyle()
|
D | FontBuilder.cpp | 42 FontDescriptionChangeScope(FontBuilder* fontBuilder) in FontDescriptionChangeScope() argument 43 : m_fontBuilder(fontBuilder) in FontDescriptionChangeScope() 44 , m_fontDescription(fontBuilder->m_style->fontDescription()) in FontDescriptionChangeScope()
|
D | StyleResolverState.h | 113 FontBuilder& fontBuilder() { return m_fontBuilder; } in fontBuilder() function
|
/external/chromium_org/third_party/WebKit/Source/build/scripts/templates/ |
D | StyleBuilderFunctions.cpp.tmpl | 446 state.fontBuilder().{{setter}}({{initial}}); 451 state.fontBuilder().{{setter}}(state.parentFontDescription().{{getter}}()); 459 state.fontBuilder().{{setter}}(static_cast<{{type_name}}>(*primitiveValue));
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | Document.cpp | 1573 FontBuilder fontBuilder; in setStyleDependentState() local 1574 fontBuilder.initForStyleResolve(*this, documentStyle, isSVGDocument()); in setStyleDependentState() 1576 fontBuilder.createFontForDocument(selector, documentStyle); in setStyleDependentState()
|