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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 57 XSLStyleSheet* parent = parentStyleSheet();
76 XSLStyleSheet* rootSheet = parentStyleSheet();
79 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet())
87 XSLStyleSheet* parentSheet = parentStyleSheet();
95 for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
XSLImportRule.h 50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
XSLStyleSheetLibxslt.cpp 52 , m_parentStyleSheet(parentRule ? parentRule->parentStyleSheet() : 0)
93 ASSERT(m_children.at(i)->parentStyleSheet() == this);
112 if (XSLStyleSheet* styleSheet = parentStyleSheet())
273 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 29 readonly attribute StyleSheet parentStyleSheet;
StyleSheet.h 46 virtual StyleSheet* parentStyleSheet() const { return 0; }
CSSRule.cpp 61 CSSStyleSheet* styleSheet = parentStyleSheet();
CSSRule.h 79 CSSStyleSheet* parentStyleSheet() const
82 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
CSSRule.idl 49 readonly attribute CSSStyleSheet parentStyleSheet;
TreeBoundaryCrossingRules.h 60 CSSStyleSheet* parentStyleSheet;
68 : parentStyleSheet(sheet)
ElementRuleCollector.h 51 MatchedRule(const RuleData* ruleData, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet)
55 , m_parentStyleSheet(parentStyleSheet)
67 const CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
154 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
TreeBoundaryCrossingRules.cpp 47 void TreeBoundaryCrossingRules::addTreeBoundaryCrossingRules(const RuleSet& authorRules, CSSStyleSheet* parentStyleSheet, unsigned parentIndex, ContainerNode& scopingNode)
61 ruleSubSet->append(RuleSubSet::create(parentStyleSheet, parentIndex, ruleSetForScope.release()));
83 MatchRequest request((*it)->ruleSet.get(), includeEmptyRules, scopingNode, (*it)->parentStyleSheet, (*it)->parentIndex);
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));
213 void ElementRuleCollector::appendCSSOMWrapperForRule(CSSStyleSheet* parentStyleSheet, StyleRule* rule)
215 // |parentStyleSheet| is 0 if and only if the |rule| is coming from User Agent. In this case,
219 if (parentStyleSheet)
220 cssRule = findStyleRule(parentStyleSheet, rule);
223 ASSERT(!parentStyleSheet || cssRule);
243 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);
368 StyleSheetContents* parentSheet = parentStyleSheet();
386 StyleSheetContents* parentSheet = parentStyleSheet();
448 while (root->parentStyleSheet())
449 root = root->parentStyleSheet();
529 StyleSheetContents* StyleSheetContents::parentStyleSheet() const
531 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
626 if (StyleSheetContents* parentSheet = parentStyleSheet())
    [all...]
CSSStyleSheet.h 56 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
157 : m_styleSheet(rule ? rule->parentStyleSheet() : 0)
PropertySetCSSStyleDeclaration.h 120 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
149 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
CSSRuleList.h 114 virtual CSSStyleSheet* styleSheet() const OVERRIDE { return m_rule->parentStyleSheet(); }
MediaList.h 97 CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
CSSStyleSheet.cpp 149 // For style rules outside the document, .parentStyleSheet can become null even if the style rule
412 CSSStyleSheet* CSSStyleSheet::parentStyleSheet() const
414 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
420 while (root->parentStyleSheet())
421 root = root->parentStyleSheet();
StyleRuleImport.cpp 123 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorCSSAgent.cpp 526 CSSStyleSheet* parentSheet = style->parentStyleSheet();
    [all...]
InspectorInstrumentation.h 181 return declaration ? instrumentingAgentsFor(declaration->parentStyleSheet()) : 0;

Completed in 662 milliseconds

1 2