/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 | 35 class StyleRule; 43 CSSStyleRule* getWrapperForRuleInSheets(StyleRule*, StyleEngine*); 55 HashMap<StyleRule*, RefPtr<CSSStyleRule> > m_styleRuleToCSSOMWrapperMap;
|
StyleInvalidationAnalysis.cpp | 81 const StyleRule* styleRule = toStyleRule(rule); 82 const CSSSelectorList& selectorList = styleRule->selectorList(); 116 case StyleRule::Import: // Whatever we import should do its own analysis, we don't need to invalidate the document here! 117 case StyleRule::Keyframes: // Keyframes never cause style invalidations and are handled during sheet insertion. 118 case StyleRule::Page: // Page rules apply only during printing, we force a full-recalc before printing. 121 case StyleRule::Media: // If the media rule doesn't apply, we could avoid recalc. 122 case StyleRule::FontFace: // If the fonts aren't in use, we could avoid recalc. 123 case StyleRule::Supports: // If we evaluated the supports-clause we could avoid recalc. 124 case StyleRule::Viewport: // If the viewport doesn't match, we could avoid recalcing [all...] |
RuleFeature.h | 31 class StyleRule; 36 RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin) 42 StyleRule* rule;
|
StyleRule.cpp | 23 #include "core/css/StyleRule.h" 180 unsigned StyleRule::averageSizeInBytes() 182 return sizeof(StyleRule) + sizeof(CSSSelector) + StylePropertySet::averageSizeInBytes(); 185 StyleRule::StyleRule() 190 StyleRule::StyleRule(const StyleRule& o) 197 StyleRule::~StyleRule() [all...] |
StyleRule.h | 96 class StyleRule : public StyleRuleBase { 99 static PassRefPtr<StyleRule> create() { return adoptRef(new StyleRule()); } 101 ~StyleRule(); 111 PassRefPtr<StyleRule> copy() const { return adoptRef(new StyleRule(*this)); } 116 StyleRule(); 117 StyleRule(const StyleRule&); 281 DEFINE_TYPE_CASTS(StyleRule##Type, StyleRuleBase, rule, rule->is##Type##Rule(), rule.is##Type##Rule() [all...] |
TreeBoundaryCrossingRules.h | 40 void addRule(StyleRule*, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags);
|
RuleSet.h | 28 #include "core/css/StyleRule.h" 55 MinimalRuleData(StyleRule* rule, unsigned selectorIndex, AddRuleFlags flags) 62 StyleRule* m_rule; 70 RuleData(StyleRule*, unsigned selectorIndex, unsigned position, AddRuleFlags); 73 StyleRule* rule() const { return m_rule; } 93 StyleRule* m_rule; 126 void addStyleRule(StyleRule*, AddRuleFlags); 127 void addRule(StyleRule*, unsigned selectorIndex, AddRuleFlags);
|
TreeBoundaryCrossingRules.cpp | 37 void TreeBoundaryCrossingRules::addRule(StyleRule* rule, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags addRuleFlags)
|
ElementRuleCollector.h | 81 Vector<StyleRule*> m_list; 122 void appendCSSOMWrapperForRule(StyleRule*);
|
CSSStyleRule.cpp | 30 #include "core/css/StyleRule.h" 42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent) 44 , m_styleRule(styleRule)
|
InspectorCSSOMWrappers.cpp | 79 m_styleRuleToCSSOMWrapperMap.add(toCSSStyleRule(cssRule)->styleRule(), toCSSStyleRule(cssRule)); 110 CSSStyleRule* InspectorCSSOMWrappers::getWrapperForRuleInSheets(StyleRule* rule, StyleEngine* styleSheetCollection)
|
RuleSet.cpp | 191 RuleData::RuleData(StyleRule* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRuleFlags) 299 void RuleSet::addRule(StyleRule* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags) 365 StyleRule* styleRule = toStyleRule(rule); 367 const CSSSelectorList& selectorList = styleRule->selectorList(); 370 m_treeBoundaryCrossingRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags)); 372 m_shadowDistributedRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags)); 374 addRule(styleRule, selectorIndex, addRuleFlags); 412 void RuleSet::addStyleRule(StyleRule* rule, AddRuleFlags addRuleFlags)
|
ElementRuleCollector.cpp | 198 static CSSStyleSheet* findStyleSheet(StyleEngine* styleEngine, StyleRule* rule) 209 if (cssStyleRule->styleRule() == rule) 216 void ElementRuleCollector::appendCSSOMWrapperForRule(StyleRule* rule) 305 StyleRule* rule = ruleData.rule();
|
CSSStyleSheet.cpp | 33 #include "core/css/StyleRule.h" 140 StyleRule* styleRule = toCSSStyleRule(cssRule)->styleRule(); 144 if (m_contents->ruleAt(j) == styleRule) {
|
StyleSheetContents.cpp | 28 #include "core/css/StyleRule.h" 49 size += ruleCount() * StyleRule::averageSizeInBytes();
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
CSSSelectorWatch.h | 34 #include "core/css/StyleRule.h" 53 const Vector<RefPtr<StyleRule> >& watchedCallbackSelectors() const { return m_watchedCallbackSelectors; } 63 Vector<RefPtr<StyleRule> > m_watchedCallbackSelectors;
|
CSSSelectorWatch.cpp | 160 RefPtr<StyleRule> rule = StyleRule::create();
|
/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);
|
StyleResolverState.h | 43 class StyleRule; 79 void setCurrentRule(StyleRule* currentRule) { m_currentRule = currentRule; } 80 const StyleRule* currentRule() const { return m_currentRule; } 172 StyleRule* m_currentRule;
|
StyleResolver.h | 71 class StyleRule; 239 void initWatchedSelectorRules(const Vector<RefPtr<StyleRule> >& watchedSelectors); 276 void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
|
StyleResolver.cpp | 176 void StyleResolver::initWatchedSelectorRules(const Vector<RefPtr<StyleRule> >& watchedSelectors) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PageSerializer.h | 53 class StyleRule;
|
/external/chromium_org/third_party/WebKit/Source/core/ |
webcore_remaining.target.darwin-arm.mk | 191 third_party/WebKit/Source/core/css/StyleRule.cpp \ [all...] |