HomeSort by relevance Sort by last modified time
    Searched full:stylerule (Results 1 - 25 of 60) sorted by null

1 2 3

  /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;
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...]
InspectorCSSOMWrappers.h 35 class StyleRule;
43 CSSStyleRule* getWrapperForRuleInSheets(StyleRule*, StyleEngine*);
55 HashMap<StyleRule*, RefPtr<CSSStyleRule> > m_styleRuleToCSSOMWrapperMap;
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...]
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);
RuleFeature.h 31 class StyleRule;
36 RuleFeature(StyleRule* rule, unsigned selectorIndex, bool hasDocumentSecurityOrigin)
42 StyleRule* rule;
CSSStyleRule.cpp 30 #include "core/css/StyleRule.h"
42 CSSStyleRule::CSSStyleRule(StyleRule* styleRule, CSSStyleSheet* parent)
44 , m_styleRule(styleRule)
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)
InspectorCSSOMWrappers.cpp 79 m_styleRuleToCSSOMWrapperMap.add(toCSSStyleRule(cssRule)->styleRule(), toCSSStyleRule(cssRule));
110 CSSStyleRule* InspectorCSSOMWrappers::getWrapperForRuleInSheets(StyleRule* rule, StyleEngine* styleSheetCollection)
CSSFontFaceRule.cpp 27 #include "core/css/StyleRule.h"
CSSFontFaceRule.h 45 StyleRuleFontFace* styleRule() const { return m_fontFaceRule.get(); }
CSSGroupingRule.h 27 #include "core/css/StyleRule.h"
CSSMediaRule.cpp 26 #include "core/css/StyleRule.h"
CSSRegionRule.cpp 36 #include "core/css/StyleRule.h"
CSSRule.cpp 26 #include "core/css/StyleRule.h"
CSSSupportsRule.cpp 33 #include "core/css/StyleRule.h"
TreeBoundaryCrossingRules.h 40 void addRule(StyleRule*, size_t selectorIndex, ContainerNode* scopingNode, AddRuleFlags);
CSSStyleSheet.cpp 33 #include "core/css/StyleRule.h"
140 StyleRule* styleRule = toCSSStyleRule(cssRule)->styleRule();
144 if (m_contents->ruleAt(j) == styleRule) {
CSSFilterRule.cpp 35 #include "core/css/StyleRule.h"
  /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;
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
StylesSidebarPane.js 516 section.styleRule.style = nodeComputedStyle;
517 var styleRule = { section: section, style: section.styleRule.style, computedStyle: section.computedStyle, rule: section.rule, editable: !!(section.styleRule.style && section.styleRule.style.id),
518 isAttribute: section.styleRule.isAttribute, isInherited: section.styleRule.isInherited, parentNode: section.styleRule.parentNode };
519 styleRules.push(styleRule);
613 var styleRule = styleRules[i]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
MatchResult.h 34 class StyleRule;
73 Vector<StyleRule*, 64> matchedRules;
77 void addMatchedProperties(const StylePropertySet* properties, StyleRule* = 0, unsigned linkMatchType = SelectorChecker::MatchAll, PropertyWhitelistType = PropertyWhitelistNone);
MatchResult.cpp 33 #include "core/css/StyleRule.h"
46 void MatchResult::addMatchedProperties(const StylePropertySet* properties, StyleRule* rule, unsigned linkMatchType, PropertyWhitelistType propertyWhitelistType)
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;

Completed in 61 milliseconds

1 2 3