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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 59 XSLStyleSheet* parent = parentStyleSheet();
78 XSLStyleSheet* rootSheet = parentStyleSheet();
81 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet())
89 XSLStyleSheet* parentSheet = parentStyleSheet();
97 for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
XSLImportRule.h 51 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
XSLStyleSheetLibxslt.cpp 52 , m_parentStyleSheet(parentRule ? parentRule->parentStyleSheet() : 0)
76 ASSERT(m_children.at(i)->parentStyleSheet() == this);
95 if (XSLStyleSheet* styleSheet = parentStyleSheet())
256 for (XSLStyleSheet* styleSheet = this; styleSheet; styleSheet = styleSheet->parentStyleSheet()) {
XSLStyleSheet.h 79 virtual XSLStyleSheet* parentStyleSheet() const OVERRIDE { return m_parentStyleSheet; }
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleSheet.idl 30 readonly attribute StyleSheet parentStyleSheet;
StyleSheet.h 44 virtual StyleSheet* parentStyleSheet() const { return 0; }
CSSRule.cpp 49 CSSStyleSheet* styleSheet = parentStyleSheet();
TreeBoundaryCrossingRules.cpp 47 void TreeBoundaryCrossingRules::addTreeBoundaryCrossingRules(const RuleSet& authorRules, ContainerNode& scopingNode, CSSStyleSheet* parentStyleSheet)
61 ruleSubSet->append(std::make_pair(parentStyleSheet, ruleSetForScope.release()));
88 CSSStyleSheet* parentStyleSheet = it->first;
90 collector.collectMatchingRules(MatchRequest(ruleSet, includeEmptyRules, scopingNode, parentStyleSheet), ruleRange, static_cast<SelectorChecker::BehaviorAtBoundary>(boundaryBehavior), ignoreCascadeScope, cascadeOrder);
CSSRule.h 78 CSSStyleSheet* parentStyleSheet() const
81 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
CSSRule.idl 48 readonly attribute CSSStyleSheet parentStyleSheet;
ElementRuleCollector.h 52 MatchedRule(const RuleData* ruleData, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet)
56 , m_parentStyleSheet(parentStyleSheet)
68 const CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
159 void addMatchedRule(const RuleData*, unsigned specificity, CascadeScope, CascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet);
PropertySetCSSStyleDeclaration.cpp 291 CSSStyleSheet* cssStyleSheet = parentStyleSheet();
348 if (m_parentRule && m_parentRule->parentStyleSheet())
349 m_parentRule->parentStyleSheet()->willMutateRules();
358 if (m_parentRule && m_parentRule->parentStyleSheet())
359 m_parentRule->parentStyleSheet()->didMutateRules();
362 CSSStyleSheet* StyleRuleCSSStyleDeclaration::parentStyleSheet() const
364 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
405 CSSStyleSheet* InlineCSSStyleDeclaration::parentStyleSheet() const
CSSStyleDeclaration.h 71 virtual CSSStyleSheet* parentStyleSheet() const { return 0; }
StyleRuleImport.h 43 StyleSheetContents* parentStyleSheet() const { return m_parentStyleSheet; }
ElementRuleCollector.cpp 81 inline void ElementRuleCollector::addMatchedRule(const RuleData* rule, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet)
85 m_matchedRules->append(MatchedRule(rule, specificity, cascadeScope, cascadeOrder, styleSheetIndex, parentStyleSheet));
216 void ElementRuleCollector::appendCSSOMWrapperForRule(CSSStyleSheet* parentStyleSheet, StyleRule* rule)
218 // |parentStyleSheet| is 0 if and only if the |rule| is coming from User Agent. In this case,
222 if (parentStyleSheet)
223 cssRule = findStyleRule(parentStyleSheet, rule);
226 ASSERT(!parentStyleSheet || cssRule);
246 appendCSSOMWrapperForRule(const_cast<CSSStyleSheet*>(matchedRules[i].parentStyleSheet()), matchedRules[i].ruleData()->rule());
StyleSheetContents.cpp 173 if (parentStyleSheet())
174 parentStyleSheet()->setHasMediaQueries();
211 ASSERT(m_importRules.at(i)->parentStyleSheet() == this);
370 StyleSheetContents* parentSheet = parentStyleSheet();
388 StyleSheetContents* parentSheet = parentStyleSheet();
450 while (root->parentStyleSheet())
451 root = root->parentStyleSheet();
531 StyleSheetContents* StyleSheetContents::parentStyleSheet() const
533 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
628 if (StyleSheetContents* parentSheet = parentStyleSheet())
    [all...]
CSSStyleSheet.h 59 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
160 : m_styleSheet(rule ? rule->parentStyleSheet() : 0)
PropertySetCSSStyleDeclaration.h 121 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
150 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
CSSRuleList.h 112 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_rule->parentStyleSheet(); }
MediaList.h 95 CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
CSSStyleSheet.cpp 149 // For style rules outside the document, .parentStyleSheet can become null even if the style rule
413 CSSStyleSheet* CSSStyleSheet::parentStyleSheet() const
415 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
421 while (root->parentStyleSheet())
422 root = root->parentStyleSheet();
StyleRuleImport.cpp 123 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
CSSGroupingRule.cpp 71 CSSStyleSheet* styleSheet = parentStyleSheet();
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 485 CSSStyleSheet* parentSheet = style->parentStyleSheet();
    [all...]
InspectorInstrumentation.h 182 return declaration ? instrumentingAgentsFor(declaration->parentStyleSheet()) : 0;

Completed in 327 milliseconds

1 2