HomeSort by relevance Sort by last modified time
    Searched refs:StyleResolver (Results 1 - 25 of 43) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 42 class StyleResolver;
66 void addRulesFromSheet(CSSStyleSheet*, const MediaQueryEvaluator&, StyleResolver*);
69 void collectViewportRulesTo(StyleResolver*) const;
SharedStyleFinder.h 35 class StyleResolver;
44 RuleSet* uncommonAttributeRuleSet, StyleResolver& styleResolver)
49 , m_styleResolver(styleResolver)
77 StyleResolver& m_styleResolver;
StyleResolver.cpp 30 #include "core/css/resolver/StyleResolver.h"
106 RenderStyle* StyleResolver::s_styleNotYetAvailable;
131 StyleResolver::StyleResolver(Document& document)
161 void StyleResolver::initWatchedSelectorRules(const WillBeHeapVector<RefPtrWillBeMember<StyleRule> >& watchedSelectors)
170 void StyleResolver::lazyAppendAuthorStyleSheets(unsigned firstNew, const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& styleSheets)
177 void StyleResolver::removePendingAuthorStyleSheets(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& styleSheets)
183 void StyleResolver::appendCSSStyleSheet(CSSStyleSheet* cssSheet)
199 void StyleResolver::appendPendingAuthorStyleSheets()
208 void StyleResolver::appendAuthorStyleSheets(const WillBeHeapVector<RefPtrWillBeMember<CSSStyleSheet> >& styleSheets
    [all...]
StyleResolver.h 93 class StyleResolver FINAL : public NoBaseWillBeGarbageCollectedFinalized<StyleResolver> {
94 WTF_MAKE_NONCOPYABLE(StyleResolver); WTF_MAKE_FAST_ALLOCATED_WILL_BE_REMOVED;
96 explicit StyleResolver(Document&);
97 virtual ~StyleResolver();
99 // FIXME: StyleResolver should not be keeping tree-walk state.
101 // TreeWalkContext or similar which is passed in to StyleResolver methods when available.
122 // their dependency on Document* instead of grabbing one through StyleResolver.
125 // FIXME: It could be better to call appendAuthorStyleSheets() directly after we factor StyleResolver further.
242 template <StyleResolver::StyleApplicationPass pass
    [all...]
StyleResolverParentScope.h 8 #include "core/css/resolver/StyleResolver.h"
31 StyleResolver& m_resolver;
40 , m_resolver(*parent.document().styleResolver())
ScopedStyleResolver.cpp 36 #include "core/css/resolver/StyleResolver.h" // For MatchRequest.
71 void ScopedStyleResolver::addRulesFromSheet(CSSStyleSheet* cssSheet, const MediaQueryEvaluator& medium, StyleResolver* resolver)
146 void ScopedStyleResolver::collectViewportRulesTo(StyleResolver* resolver) const
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 50 class StyleResolver;
173 static const StyleRuleKeyframes* matchScopedKeyframesRule(StyleResolver*, const Element*, const StringImpl*);
178 static PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> calculateUpdate(const Element* animatingElement, Element&, const RenderStyle&, RenderStyle* parentStyle, StyleResolver*);
213 static void calculateAnimationUpdate(CSSAnimationUpdate*, const Element* animatingElement, Element&, const RenderStyle&, RenderStyle* parentStyle, StyleResolver*);
CSSAnimations.cpp 45 #include "core/css/resolver/StyleResolver.h"
85 static void resolveKeyframes(StyleResolver* resolver, const Element* animatingElement, Element& element, const RenderStyle& style, RenderStyle* parentStyle, const AtomicString& name, TimingFunction* defaultTimingFunction,
202 const StyleRuleKeyframes* CSSAnimations::matchScopedKeyframesRule(StyleResolver* resolver, const Element* element, const StringImpl* animationName)
224 PassOwnPtrWillBeRawPtr<CSSAnimationUpdate> CSSAnimations::calculateUpdate(const Element* animatingElement, Element& element, const RenderStyle& style, RenderStyle* parentStyle, StyleResolver* resolver)
234 void CSSAnimations::calculateAnimationUpdate(CSSAnimationUpdate* update, const Element* animatingElement, Element& element, const RenderStyle& style, RenderStyle* parentStyle, StyleResolver* resolver)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/animation/
DeferredLegacyStyleInterpolation.cpp 16 #include "core/css/resolver/StyleResolver.h"
24 StyleResolver::createAnimatableValueSnapshot(state, m_id, *m_startCSSValue),
25 StyleResolver::createAnimatableValueSnapshot(state, m_id, *m_endCSSValue),
StringKeyframe.cpp 14 #include "core/css/resolver/StyleResolver.h"
126 m_animatableValueCache = StyleResolver::createAnimatableValueSnapshot(*element, property, *fromCSSValue);
128 RefPtrWillBeRawPtr<AnimatableValue> to = StyleResolver::createAnimatableValueSnapshot(*element, property, *toCSSValue);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ShadowTreeStyleSheetCollection.cpp 32 #include "core/css/resolver/StyleResolver.h"
98 if (StyleResolver* styleResolver = engine->resolver()) {
100 // We should not destroy StyleResolver when we find any stylesheet update in a shadow tree.
102 styleResolver->resetAuthorStyle(treeScope());
103 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleSheets);
104 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
106 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
StyleEngine.h 32 #include "core/css/resolver/StyleResolver.h"
138 StyleResolver* resolver() const
143 StyleResolver& ensureResolver()
254 OwnPtrWillBeMember<StyleResolver> m_resolver;
DocumentStyleSheetCollection.cpp 30 #include "core/css/resolver/StyleResolver.h"
107 } else if (StyleResolver* styleResolver = engine->resolver()) {
110 styleResolver->resetAuthorStyle(treeScope());
112 styleResolver->removePendingAuthorStyleSheets(m_activeAuthorStyleSheets);
113 styleResolver->lazyAppendAuthorStyleSheets(0, collection.activeAuthorStyleSheets());
115 styleResolver->lazyAppendAuthorStyleSheets(m_activeAuthorStyleSheets.size(), collection.activeAuthorStyleSheets());
Document.h 142 class StyleResolver;
161 // Discards the StyleResolver and rebuilds it.
163 // Attempts to use StyleInvalidationAnalysis to avoid discarding the entire StyleResolver.
394 StyleResolver* styleResolver() const;
395 StyleResolver& ensureStyleResolver() const;
    [all...]
StyleEngine.cpp 491 m_resolver = adoptPtrWillBeNoop(new StyleResolver(*m_document));
Document.cpp 59 #include "core/css/resolver/StyleResolver.h"
    [all...]
ContainerNode.cpp     [all...]
Element.cpp 48 #include "core/css/resolver/StyleResolver.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.h 61 class StyleResolver;
142 bool applyViewportStyleOverride(StyleResolver*);
InspectorCSSAgent.h 59 class StyleResolver;
InspectorCSSAgent.cpp 49 #include "core/css/resolver/StyleResolver.h"
674 // FIXME: It's really gross for the inspector to reach in and access StyleResolver
679 StyleResolver& styleResolver = ownerDocument->ensureStyleResolver();
681 RefPtrWillBeRawPtr<CSSRuleList> matchedRules = styleResolver.pseudoCSSRulesForElement(element, elementPseudoId, StyleResolver::AllCSSRules);
688 RefPtrWillBeRawPtr<CSSRuleList> matchedRules = styleResolver.pseudoCSSRulesForElement(element, pseudoId, StyleResolver::AllCSSRules);
705 StyleResolver& parentStyleResolver = parentElement->ownerDocument()->ensureStyleResolver();
706 RefPtrWillBeRawPtr<CSSRuleList> parentMatchedRules = parentStyleResolver.cssRulesForElement(parentElement, StyleResolver::AllCSSRules)
    [all...]
InspectorInstrumentation.idl 278 bool applyViewportStyleOverride(Document*, StyleResolver*);
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 42 #include "core/css/resolver/StyleResolver.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceSet.cpp 38 #include "core/css/resolver/StyleResolver.h"
531 StyleResolver& styleResolver = document()->ensureStyleResolver();
532 styleResolver.applyPropertiesToStyle(properties, WTF_ARRAY_LENGTH(properties), style.get());
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLinkElement.cpp 34 #include "core/css/resolver/StyleResolver.h"
695 RefPtr<RenderStyle> documentStyle = StyleResolver::styleForDocument(*frame->document());

Completed in 935 milliseconds

1 2