Searched refs:ScopedStyleResolver (Results 1 – 15 of 15) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/ |
D | ScopedStyleTree.h | 42 ScopedStyleResolver* ensureScopedStyleResolver(ContainerNode& scopingNode); 43 ScopedStyleResolver* lookupScopedStyleResolverFor(const ContainerNode* scopingNode) in lookupScopedStyleResolverFor() 45 …HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.find(sco… in lookupScopedStyleResolverFor() 49 ScopedStyleResolver* scopedStyleResolverFor(const ContainerNode& scopingNode); 50 ScopedStyleResolver* addScopedStyleResolver(ContainerNode& scopingNode, bool& isNewEntry); 55 …ScopedStyleResolver* scopedStyleResolverForDocument() const { return m_scopedResolverForDocument; } in scopedStyleResolverForDocument() 57 void resolveScopedStyles(const Element*, Vector<ScopedStyleResolver*, 8>&); 58 … void collectScopedResolversForHostedShadowTrees(const Element*, Vector<ScopedStyleResolver*, 8>&); 59 void resolveScopedKeyframesRules(const Element*, Vector<ScopedStyleResolver*, 8>&); 60 ScopedStyleResolver* scopedResolverFor(const Element*); [all …]
|
D | ScopedStyleTree.cpp | 37 ScopedStyleResolver* ScopedStyleTree::ensureScopedStyleResolver(ContainerNode& scopingNode) in ensureScopedStyleResolver() 40 ScopedStyleResolver* scopedStyleResolver = addScopedStyleResolver(scopingNode, isNewEntry); in ensureScopedStyleResolver() 46 ScopedStyleResolver* ScopedStyleTree::scopedStyleResolverFor(const ContainerNode& scopingNode) in scopedStyleResolverFor() 56 ScopedStyleResolver* ScopedStyleTree::addScopedStyleResolver(ContainerNode& scopingNode, bool& isNe… in addScopedStyleResolver() 58 …HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::AddResult addResult = m_authorStyles.… in addScopedStyleResolver() 61 addResult.iterator->value = ScopedStyleResolver::create(scopingNode); in addScopedStyleResolver() 69 void ScopedStyleTree::setupScopedStylesTree(ScopedStyleResolver* target) in setupScopedStylesTree() 79 if (ScopedStyleResolver* scopedResolver = scopedStyleResolverFor(*node)) { in setupScopedStylesTree() 85 ScopedStyleResolver* scopedResolver = addScopedStyleResolver(*node, dummy); in setupScopedStylesTree() 96 …for (HashMap<const ContainerNode*, OwnPtr<ScopedStyleResolver> >::iterator it = m_authorStyles.beg… in setupScopedStylesTree() [all …]
|
D | ScopedStyleResolver.h | 45 class ScopedStyleResolver { 46 WTF_MAKE_NONCOPYABLE(ScopedStyleResolver); WTF_MAKE_FAST_ALLOCATED; 48 …static PassOwnPtr<ScopedStyleResolver> create(ContainerNode& scopingNode) { return adoptPtr(new Sc… in create() 54 void setParent(ScopedStyleResolver* newParent) { m_parent = newParent; } in setParent() 55 ScopedStyleResolver* parent() { return m_parent; } in parent() 70 …explicit ScopedStyleResolver(ContainerNode& scopingNode) : m_scopingNode(scopingNode), m_parent(0)… in ScopedStyleResolver() function 75 ScopedStyleResolver* m_parent;
|
D | ScopedStyleResolver.cpp | 45 ContainerNode* ScopedStyleResolver::scopingNodeFor(Document& document, const CSSStyleSheet* sheet) in scopingNodeFor() 70 void ScopedStyleResolver::addRulesFromSheet(StyleSheetContents* sheet, const MediaQueryEvaluator& m… in addRulesFromSheet() 80 void ScopedStyleResolver::collectFeaturesTo(RuleFeatureSet& features) in collectFeaturesTo() 86 void ScopedStyleResolver::resetAuthorStyle() in resetAuthorStyle() 92 bool ScopedStyleResolver::checkRegionStyle(Element* regionElement) in checkRegionStyle() 105 const StyleRuleKeyframes* ScopedStyleResolver::keyframeStylesForAnimation(const StringImpl* animati… in keyframeStylesForAnimation() 117 void ScopedStyleResolver::addKeyframeStyle(PassRefPtr<StyleRuleKeyframes> rule) in addKeyframeStyle() 131 void ScopedStyleResolver::collectMatchingAuthorRules(ElementRuleCollector& collector, bool includeE… in collectMatchingAuthorRules() 152 void ScopedStyleResolver::matchPageRules(PageRuleCollector& collector) in matchPageRules() 160 void ScopedStyleResolver::collectViewportRulesTo(StyleResolver* resolver) const in collectViewportRulesTo()
|
D | StyleResolver.h | 160 …ScopedStyleResolver* styleTreeScopedStyleResolverForDocument() const { return m_styleTree.scopedSt… in styleTreeScopedStyleResolverForDocument() 162 ScopedStyleResolver* ensureScopedStyleResolver(ContainerNode* scope) in ensureScopedStyleResolver() 168 …void styleTreeResolveScopedKeyframesRules(const Element* element, Vector<ScopedStyleResolver*, 8>&… in styleTreeResolveScopedKeyframesRules() argument 251 …leCollector&, bool includeEmptyRules, Vector<ScopedStyleResolver*, 8>& resolvers, Vector<ScopedSty…
|
D | StyleResolver.cpp | 206 ContainerNode* scopingNode = ScopedStyleResolver::scopingNodeFor(document(), cssSheet); in appendCSSStyleSheet() 210 ScopedStyleResolver* resolver = ensureScopedStyleResolver(scopingNode); in appendCSSStyleSheet() 288 …ScopedStyleResolver* resolver = scopingNode ? m_styleTree.lookupScopedStyleResolverFor(scopingNode… in resetAuthorStyle() 441 …r& collector, bool includeEmptyRules, Vector<ScopedStyleResolver*, 8>& resolvers, Vector<ScopedSty… in matchAuthorRulesForShadowHost() argument 476 Vector<ScopedStyleResolver*, 8> resolvers; in matchAuthorRules() 479 Vector<ScopedStyleResolver*, 8> resolversInShadowTree; in matchAuthorRules() 492 ScopedStyleResolver* resolver = resolvers.at(i); in matchAuthorRules() 1001 if (ScopedStyleResolver* scopedResolver = m_styleTree.scopedStyleResolverForDocument()) in styleForPage() 1042 if (ScopedStyleResolver* scopedResolver = m_styleTree.scopedStyleResolverForDocument()) in collectViewportRules() 1075 if (ScopedStyleResolver* scopedResolver = m_styleTree.scopedStyleResolverForDocument()) { in checkRegionStyle()
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | ElementRuleCollector.h | 40 class ScopedStyleResolver; variable
|
/external/chromium_org/third_party/WebKit/Source/core/animation/css/ |
D | CSSAnimations.cpp | 338 Vector<ScopedStyleResolver*, 8> stack; in matchScopedKeyframesRule()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_remaining.target.linux-arm.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | webcore_remaining.target.linux-x86.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | webcore_remaining.target.linux-mips.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | webcore_remaining.target.darwin-arm.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | webcore_remaining.target.darwin-x86.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | webcore_remaining.target.darwin-mips.mk | 205 third_party/WebKit/Source/core/css/resolver/ScopedStyleResolver.cpp \
|
D | core.gypi | 838 'css/resolver/ScopedStyleResolver.cpp', 839 'css/resolver/ScopedStyleResolver.h',
|