Searched defs:parentStyleSheet (Results 1 - 14 of 14) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSStyleDeclaration.h71 virtual CSSStyleSheet* parentStyleSheet() const { return 0; } function in class:blink::CSSStyleDeclaration
H A DStyleSheet.h46 virtual StyleSheet* parentStyleSheet() const { return 0; } function in class:blink::StyleSheet
H A DTreeBoundaryCrossingRules.h60 CSSStyleSheet* parentStyleSheet; member in class:blink::FINAL::FINAL
68 : parentStyleSheet(sheet)
H A DMediaList.h97 CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } function in class:blink::MediaList
H A DStyleRuleImport.h43 StyleSheetContents* parentStyleSheet() const { return m_parentStyleSheet; } function in class:blink::StyleRuleImport
H A DTreeBoundaryCrossingRules.cpp47 void TreeBoundaryCrossingRules::addTreeBoundaryCrossingRules(const RuleSet& authorRules, CSSStyleSheet* parentStyleSheet, unsigned parentIndex, ContainerNode& scopingNode) argument
61 ruleSubSet->append(RuleSubSet::create(parentStyleSheet, parentIndex, ruleSetForScope.release()));
83 MatchRequest request((*it)->ruleSet.get(), includeEmptyRules, scopingNode, (*it)->parentStyleSheet, (*it)->parentIndex);
H A DCSSRule.h79 CSSStyleSheet* parentStyleSheet() const function in class:blink::CSSRule
82 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
H A DCSSStyleSheet.cpp149 // For style rules outside the document, .parentStyleSheet can become null even if the style rule
412 CSSStyleSheet* CSSStyleSheet::parentStyleSheet() const function in class:blink::CSSStyleSheet
414 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
420 while (root->parentStyleSheet())
421 root = root->parentStyleSheet();
H A DElementRuleCollector.cpp81 inline void ElementRuleCollector::addMatchedRule(const RuleData* rule, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet) argument
85 m_matchedRules->append(MatchedRule(rule, specificity, cascadeScope, cascadeOrder, styleSheetIndex, parentStyleSheet));
213 void ElementRuleCollector::appendCSSOMWrapperForRule(CSSStyleSheet* parentStyleSheet, StyleRule* rule) argument
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());
H A DElementRuleCollector.h51 MatchedRule(const RuleData* ruleData, unsigned specificity, CascadeScope cascadeScope, CascadeOrder cascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet) argument
55 , m_parentStyleSheet(parentStyleSheet)
67 const CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } function in class:blink::MatchedRule
154 void addMatchedRule(const RuleData*, unsigned specificity, CascadeScope, CascadeOrder, unsigned styleSheetIndex, const CSSStyleSheet* parentStyleSheet);
H A DPropertySetCSSStyleDeclaration.cpp291 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 function in class:blink::StyleRuleCSSStyleDeclaration
364 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
405 CSSStyleSheet* InlineCSSStyleDeclaration::parentStyleSheet() const function in class:blink::InlineCSSStyleDeclaration
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.h50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.cpp238 void StyleResolver::processScopedRules(const RuleSet& authorRules, CSSStyleSheet* parentStyleSheet, unsigned parentIndex, ContainerNode& scope) argument
246 m_treeBoundaryCrossingRules.addTreeBoundaryCrossingRules(authorRules, parentStyleSheet, parentIndex, scope);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp526 CSSStyleSheet* parentSheet = style->parentStyleSheet();
989 PassRefPtr<TypeBuilder::CSS::CSSMedia> InspectorCSSAgent::buildMediaObject(const MediaList* media, MediaListSource mediaListSource, const String& sourceURL, CSSStyleSheet* parentStyleSheet) argument
1010 OwnPtr<MediaQueryEvaluator> mediaEvaluator = adoptPtr(new MediaQueryEvaluator(parentStyleSheet->ownerDocument()->frame()));
1013 RefPtr<MediaValues> mediaValues = MediaValues::createDynamicIfFrameExists(parentStyleSheet->ownerDocument()->frame());
1053 if (parentStyleSheet && mediaListSource != MediaListSourceLinkedSheet) {
1054 if (InspectorStyleSheet* inspectorStyleSheet = m_cssStyleSheetToInspectorStyleSheet.get(parentStyleSheet))
1064 InspectorStyleSheet* inspectorStyleSheet = bindStyleSheet(parentRule->parentStyleSheet());
1095 CSSStyleSheet* parentStyleSheet = 0; local
1101 parentStyleSheet = mediaRule->parentStyleSheet();
[all...]

Completed in 394 milliseconds