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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.cpp 57 XSLStyleSheet* parent = parentStyleSheet();
77 XSLStyleSheet* rootSheet = parentStyleSheet();
80 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet())
88 XSLStyleSheet* parentSheet = parentStyleSheet();
95 for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
XSLImportRule.h 50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
XSLStyleSheetLibxslt.cpp 51 , m_parentStyleSheet(parentRule ? parentRule->parentStyleSheet() : 0)
75 ASSERT(m_children.at(i)->parentStyleSheet() == this);
93 if (XSLStyleSheet* styleSheet = parentStyleSheet())
254 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 43 virtual StyleSheet* parentStyleSheet() const { return 0; }
CSSRule.cpp 51 CSSStyleSheet* styleSheet = parentStyleSheet();
CSSRule.h 76 CSSStyleSheet* parentStyleSheet() const
79 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
CSSRule.idl 48 readonly attribute CSSStyleSheet parentStyleSheet;
PropertySetCSSStyleDeclaration.cpp 346 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
403 return m_parentRule ? m_parentRule->parentStyleSheet() : 0;
429 CSSStyleSheet* InlineCSSStyleDeclaration::parentStyleSheet() const
StyleSheetContents.cpp 160 if (parentStyleSheet())
161 parentStyleSheet()->setHasMediaQueries();
198 ASSERT(m_importRules.at(i)->parentStyleSheet() == this);
357 StyleSheetContents* parentSheet = parentStyleSheet();
392 while (root->parentStyleSheet())
393 root = root->parentStyleSheet();
493 StyleSheetContents* StyleSheetContents::parentStyleSheet() const
495 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
542 if (StyleSheetContents* parentSheet = parentStyleSheet())
PropertySetCSSStyleDeclaration.h 111 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
132 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
CSSRuleList.h 85 virtual CSSStyleSheet* styleSheet() const { return m_rule->parentStyleSheet(); }
CSSStyleDeclaration.h 80 virtual CSSStyleSheet* parentStyleSheet() const { return 0; }
StyleRuleImport.h 42 StyleSheetContents* parentStyleSheet() const { return m_parentStyleSheet; }
CSSStyleSheet.h 57 virtual CSSStyleSheet* parentStyleSheet() const OVERRIDE;
154 : m_styleSheet(rule ? rule->parentStyleSheet() : 0)
CSSStyleSheet.cpp 116 // For style rules outside the document, .parentStyleSheet can become null even if the style rule
405 CSSStyleSheet* CSSStyleSheet::parentStyleSheet() const
407 return m_ownerRule ? m_ownerRule->parentStyleSheet() : 0;
413 while (root->parentStyleSheet())
414 root = root->parentStyleSheet();
MediaList.h 91 CSSStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
CSSGroupingRule.cpp 68 CSSStyleSheet* styleSheet = parentStyleSheet();
StyleRuleImport.cpp 110 for (StyleSheetContents* sheet = m_parentStyleSheet; sheet; sheet = sheet->parentStyleSheet()) {
CSSKeyframesRule.cpp 117 CSSStyleSheet* styleSheet = parentStyleSheet();
StyleSheetContents.h 112 StyleSheetContents* parentStyleSheet() const;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInstrumentation.h 179 return declaration ? instrumentingAgentsFor(declaration->parentStyleSheet()) : 0;
InspectorCSSAgent.cpp 798 CSSStyleSheet* parentSheet = style->parentStyleSheet();
    [all...]
InspectorStyleSheet.h 134 static PassRefPtr<InspectorStyle> create(const InspectorCSSId& styleId, PassRefPtr<CSSStyleDeclaration> style, InspectorStyleSheet* parentStyleSheet);
144 InspectorStyle(const InspectorCSSId& styleId, PassRefPtr<CSSStyleDeclaration> style, InspectorStyleSheet* parentStyleSheet);

Completed in 645 milliseconds

1 2