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

/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSStyleDeclaration.h80 virtual CSSStyleSheet* parentStyleSheet() const { return 0; } function in class:WebCore::CSSStyleDeclaration
H A DStyleSheet.h43 virtual StyleSheet* parentStyleSheet() const { return 0; } function in class:WebCore::StyleSheet
H A DMediaList.h91 CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } function in class:WebCore::MediaList
H A DStyleRuleImport.h42 StyleSheetContents* parentStyleSheet() const { return m_parentStyleSheet; } function in class:WebCore::StyleRuleImport
H A DCSSRule.h76 CSSStyleSheet* parentStyleSheet() const function in class:WebCore::CSSRule
79 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
H A DCSSStyleSheet.cpp116 // For style rules outside the document, .parentStyleSheet can become null even if the style rule
405 CSSStyleSheet* CSSStyleSheet::parentStyleSheet() const function in class:WebCore::CSSStyleSheet
407 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
413 while (root->parentStyleSheet())
414 root = root->parentStyleSheet();
H A DPropertySetCSSStyleDeclaration.cpp346 CSSStyleSheet* cssStyleSheet = parentStyleSheet();
387 if (m_parentRule && m_parentRule->parentStyleSheet())
388 m_parentRule->parentStyleSheet()->willMutateRules();
397 if (m_parentRule && m_parentRule->parentStyleSheet())
398 m_parentRule->parentStyleSheet()->didMutateRules();
401 CSSStyleSheet* StyleRuleCSSStyleDeclaration::parentStyleSheet() const function in class:WebCore::StyleRuleCSSStyleDeclaration
403 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
429 CSSStyleSheet* InlineCSSStyleDeclaration::parentStyleSheet() const function in class:WebCore::InlineCSSStyleDeclaration
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.h50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } function in class:WebCore::XSLImportRule
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.cpp798 CSSStyleSheet* parentSheet = style->parentStyleSheet();
1291 PassRefPtr<TypeBuilder::CSS::CSSMedia> InspectorCSSAgent::buildMediaObject(const MediaList* media, MediaListSource mediaListSource, const String& sourceURL, CSSStyleSheet* parentStyleSheet) argument
1314 if (parentStyleSheet && mediaListSource != MediaListSourceLinkedSheet) {
1315 if (InspectorStyleSheet* inspectorStyleSheet = m_cssStyleSheetToInspectorStyleSheet.get(parentStyleSheet))
1324 InspectorStyleSheet* inspectorStyleSheet = bindStyleSheet(parentRule->parentStyleSheet());
1342 CSSStyleSheet* parentStyleSheet = 0; local
1347 parentStyleSheet = mediaRule->parentStyleSheet();
1351 parentStyleSheet = importRule->parentStyleSheet();
[all...]

Completed in 362 milliseconds