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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleRule.h 31 class StyleRule;
35 static PassRefPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet) { return adoptRef(new CSSStyleRule(rule, sheet)); }
49 StyleRule* styleRule() const { return m_styleRule.get(); }
52 CSSStyleRule(StyleRule*, CSSStyleSheet*);
56 RefPtr<StyleRule> m_styleRule;
InspectorCSSOMWrappers.h 36 class StyleRule;
43 CSSStyleRule* getWrapperForRuleInSheets(StyleRule*, DocumentStyleSheetCollection*);
55 HashMap<StyleRule*, RefPtr<CSSStyleRule> > m_styleRuleToCSSOMWrapperMap;
RuleFeature.h 31 class StyleRule;
36 RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin)
42 StyleRule* rule;
StyleRule.h 98 class StyleRule : public StyleRuleBase {
101 static PassRefPtr<StyleRule> create() { return adoptRef(new StyleRule()); }
103 ~StyleRule();
113 PassRefPtr<StyleRule> copy() const { return adoptRef(new StyleRule(*this)); }
118 StyleRule();
119 StyleRule(const StyleRule&);
125 inline const StyleRule* toStyleRule(const StyleRuleBase* rule
    [all...]
StyleRule.cpp 23 #include "core/css/StyleRule.h"
62 delete static_cast<StyleRule*>(this);
107 return static_cast<const StyleRule*>(this)->copy();
146 rule = CSSStyleRule::create(static_cast<StyleRule*>(self), parentSheet);
189 unsigned StyleRule::averageSizeInBytes()
191 return sizeof(StyleRule) + sizeof(CSSSelector) + StylePropertySet::averageSizeInBytes();
194 StyleRule::StyleRule()
199 StyleRule::StyleRule(const StyleRule& o
    [all...]
RuleSet.h 26 #include "core/css/StyleRule.h"
56 RuleData(StyleRule*, unsigned selectorIndex, unsigned position, AddRuleFlags);
59 StyleRule* rule() const { return m_rule; }
79 StyleRule* m_rule;
112 void addStyleRule(StyleRule*, AddRuleFlags);
113 void addRule(StyleRule*, unsigned selectorIndex, AddRuleFlags);
DocumentRuleSets.h 45 void addRule(StyleRule*, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags);
CSSStyleRule.cpp 30 #include "core/css/StyleRule.h"
42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent)
44 , m_styleRule(styleRule)
127 m_styleRule = static_cast<StyleRule*>(rule);
StyleInvalidationAnalysis.cpp 81 const StyleRule* styleRule = toStyleRule(rule);
82 const CSSSelectorList& selectorList = styleRule->selectorList();
136 StyleRule* styleRule = static_cast<StyleRule*>(rule);
137 if (!determineSelectorScopes(styleRule->selectorList(), m_idScopes, m_classScopes)) {
RuleSet.cpp 42 #include "core/css/StyleRule.h"
205 RuleData::RuleData(StyleRule* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRuleFlags)
305 void RuleSet::addRule(StyleRule* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags)
345 regionRuleSet->addStyleRule(static_cast<StyleRule*>(regionStylingRule), addRuleFlags);
359 StyleRule* styleRule = static_cast<StyleRule*>(rule);
361 const CSSSelectorList& selectorList = styleRule->selectorList();
366 resolver->ruleSets().shadowDistributedRules().addRule(styleRule, selectorIndex, const_cast<ContainerNode*>(scope), addRuleFlags);
368 addRule(styleRule, selectorIndex, addRuleFlags)
    [all...]
DocumentRuleSets.cpp 41 void ShadowDistributedRules::addRule(StyleRule* rule, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags addRuleFlags)
InspectorCSSOMWrappers.cpp 83 m_styleRuleToCSSOMWrapperMap.add(static_cast<CSSStyleRule*>(cssRule)->styleRule(), static_cast<CSSStyleRule*>(cssRule));
114 CSSStyleRule* InspectorCSSOMWrappers::getWrapperForRuleInSheets(StyleRule* rule, DocumentStyleSheetCollection* styleSheetCollection)
StyleSheetContents.cpp 28 #include "core/css/StyleRule.h"
46 size += ruleCount() * StyleRule::averageSizeInBytes();
417 static_cast<StyleRule*>(rule)->properties()->addSubresourceStyleURLs(urls, this);
430 if (static_cast<const StyleRule*>(rule)->properties()->hasFailedOrCanceledSubresources())
ElementRuleCollector.cpp 245 StyleRule* rule = ruleData.rule();
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.h 49 class StyleRule;
75 void retrieveResourcesForRule(StyleRule*, Document*);
PageSerializer.cpp 39 #include "core/css/StyleRule.h"
276 retrieveResourcesForRule(static_cast<CSSStyleRule*>(rule)->styleRule(), document);
313 void PageSerializer::retrieveResourcesForRule(StyleRule* rule, Document* document)
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchResult.cpp 33 #include "core/css/StyleRule.h"
46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
MatchResult.h 34 class StyleRule;
73 Vector<StyleRule*, 64> matchedRules;
77 void addMatchedProperties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChecker::MatchAll, PropertyWhitelistType = PropertyWhitelistNone);
StyleResolver.h 67 class StyleRule;
312 void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
ScopedStyleResolver.cpp 35 #include "core/css/StyleRule.h"
283 rule->addStyleRule(static_cast<StyleRule*>(hostStylingRule), addRuleFlags);
StyleResolver.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 163 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 163 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]
webcore_remaining.target.darwin-x86.mk 163 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]
webcore_remaining.target.linux-arm.mk 163 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]

Completed in 667 milliseconds

1 2