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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSStyleRule.h 32 class StyleRule;
36 static PassRefPtrWillBeRawPtr<CSSStyleRule> create(StyleRule* rule, CSSStyleSheet* sheet)
53 StyleRule* styleRule() const { return m_styleRule.get(); }
58 CSSStyleRule(StyleRule*, CSSStyleSheet*);
62 RefPtrWillBeMember<StyleRule> m_styleRule;
StyleRule.h 101 class StyleRule : public StyleRuleBase {
104 static PassRefPtrWillBeRawPtr<StyleRule> create() { return adoptRefWillBeNoop(new StyleRule()); }
106 ~StyleRule();
116 PassRefPtrWillBeRawPtr<StyleRule> copy() const { return adoptRefWillBeNoop(new StyleRule(*this)); }
123 StyleRule();
124 StyleRule(const StyleRule&);
284 DEFINE_TYPE_CASTS(StyleRule##Type, StyleRuleBase, rule, rule->is##Type##Rule(), rule.is##Type##Rule()
    [all...]
StyleRule.cpp 23 #include "core/css/StyleRule.h"
98 toStyleRule(this)->~StyleRule();
248 unsigned StyleRule::averageSizeInBytes()
250 return sizeof(StyleRule) + sizeof(CSSSelector) + StylePropertySet::averageSizeInBytes();
253 StyleRule::StyleRule()
258 StyleRule::StyleRule(const StyleRule& o)
265 StyleRule::~StyleRule(
    [all...]
RuleSet.h 28 #include "core/css/StyleRule.h"
58 MinimalRuleData(StyleRule* rule, unsigned selectorIndex, AddRuleFlags flags)
67 RawPtrWillBeMember<StyleRule> m_rule;
75 RuleData(StyleRule*, unsigned selectorIndex, unsigned position, AddRuleFlags);
78 StyleRule* rule() const { return m_rule; }
99 RawPtrWillBeMember<StyleRule> m_rule;
132 void addStyleRule(StyleRule*, AddRuleFlags);
133 void addRule(StyleRule*, unsigned selectorIndex, AddRuleFlags);
ElementRuleCollector.h 104 WillBeHeapVector<RawPtrWillBeMember<StyleRule> > m_list;
155 CSSRule* findStyleRule(CSSRuleCollection*, StyleRule*);
156 void appendCSSOMWrapperForRule(CSSStyleSheet*, StyleRule*);
RuleFeature.h 41 class StyleRule;
46 RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin);
50 RawPtrWillBeMember<StyleRule> rule;
CSSStyleRule.cpp 30 #include "core/css/StyleRule.h"
42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent)
44 , m_styleRule(styleRule)
RuleSet.cpp 126 RuleData::RuleData(StyleRule* rule, unsigned selectorIndex, unsigned position, AddRuleFlags addRuleFlags)
238 void RuleSet::addRule(StyleRule* rule, unsigned selectorIndex, AddRuleFlags addRuleFlags)
279 StyleRule* styleRule = toStyleRule(rule);
281 const CSSSelectorList& selectorList = styleRule->selectorList();
284 m_treeBoundaryCrossingRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags));
286 m_shadowDistributedRules.append(MinimalRuleData(styleRule, selectorIndex, addRuleFlags));
288 addRule(styleRule, selectorIndex, addRuleFlags);
326 void RuleSet::addStyleRule(StyleRule* rule, AddRuleFlags addRuleFlags)
ElementRuleCollector.cpp 194 CSSRule* ElementRuleCollector::findStyleRule(CSSRuleCollection* cssRules, StyleRule* styleRule)
204 if (cssStyleRule->styleRule() == styleRule)
208 result = findStyleRule(cssImportRule->styleSheet(), styleRule);
210 result = findStyleRule(nestedRuleList(cssRule), styleRule);
216 void ElementRuleCollector::appendCSSOMWrapperForRule(CSSStyleSheet* parentStyleSheet, StyleRule* rule)
283 StyleRule* rule = ruleData.rule();
RuleFeature.cpp 36 #include "core/css/StyleRule.h"
107 RuleFeature::RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin)
StyleSheetContents.cpp 28 #include "core/css/StyleRule.h"
50 size += ruleCount() * StyleRule::averageSizeInBytes();
  /external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
StyleSheetInvalidationAnalysis.cpp 85 const StyleRule* styleRule = toStyleRule(rule);
86 const CSSSelectorList& selectorList = styleRule->selectorList();
115 case StyleRule::Import: // Whatever we import should do its own analysis, we don't need to invalidate the document here!
116 case StyleRule::Keyframes: // Keyframes never cause style invalidations and are handled during sheet insertion.
117 case StyleRule::Page: // Page rules apply only during printing, we force a full-recalc before printing.
120 case StyleRule::Media: // If the media rule doesn't apply, we could avoid recalc.
121 case StyleRule::FontFace: // If the fonts aren't in use, we could avoid recalc.
122 case StyleRule::Supports: // If we evaluated the supports-clause we could avoid recalc.
123 case StyleRule::Viewport: // If the viewport doesn't match, we could avoid recalcing
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.h 34 #include "core/css/StyleRule.h"
54 const WillBeHeapVector<RefPtrWillBeMember<StyleRule> >& watchedCallbackSelectors() const { return m_watchedCallbackSelectors; }
66 WillBeHeapVector<RefPtrWillBeMember<StyleRule> > m_watchedCallbackSelectors;
CSSSelectorWatch.cpp 159 RefPtrWillBeRawPtr<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;
75 WillBeHeapVector<RawPtrWillBeMember<StyleRule>, 64> matchedRules;
79 void addMatchedProperties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChecker::MatchAll, PropertyWhitelistType = PropertyWhitelistNone);
StyleResolverState.h 42 class StyleRule;
78 void setCurrentRule(StyleRule* currentRule) { m_currentRule = currentRule; }
79 const StyleRule* currentRule() const { return m_currentRule; }
166 RawPtrWillBeMember<StyleRule> m_currentRule;
StyleResolver.h 69 class StyleRule;
235 void initWatchedSelectorRules(const WillBeHeapVector<RefPtrWillBeMember<StyleRule> >& watchedSelectors);
275 void applyProperties(StyleResolverState&, const StylePropertySet* properties, StyleRule*, bool isImportant, bool inheritedOnly, PropertyWhitelistType = PropertyWhitelistNone);
StyleResolver.cpp 160 void StyleResolver::initWatchedSelectorRules(const WillBeHeapVector<RefPtrWillBeMember<StyleRule> >& watchedSelectors)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.h 53 class StyleRule;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
CSSParser.js 114 WebInspector.CSSParser.StyleRule;
122 * @typedef {(WebInspector.CSSParser.StyleRule|WebInspector.CSSParser.AtRule)}
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
BisonCSSParser-in.cpp 70 #include "core/css/StyleRule.h"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_remaining.target.darwin-arm.mk 216 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]
webcore_remaining.target.darwin-arm64.mk 216 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]
webcore_remaining.target.darwin-mips.mk 216 third_party/WebKit/Source/core/css/StyleRule.cpp \
    [all...]

Completed in 385 milliseconds

1 2