Home
last modified time | relevance | path

Searched refs:parentSheet (Results 1 – 9 of 9) sorted by relevance

/external/webkit/Source/WebCore/css/
DCSSImportRule.cpp114 CSSStyleSheet* parentSheet = parentStyleSheet(); in insertedIntoParent() local
115 if (!parentSheet || !parentSheet->document()) in insertedIntoParent()
118 CachedResourceLoader* cachedResourceLoader = parentSheet->document()->cachedResourceLoader(); in insertedIntoParent()
123 if (!parentSheet->finalURL().isNull()) in insertedIntoParent()
125 absHref = KURL(parentSheet->finalURL(), m_strHref).string(); in insertedIntoParent()
137 if (parentSheet->isUserStyleSheet()) in insertedIntoParent()
138 … m_cachedSheet = cachedResourceLoader->requestUserCSSStyleSheet(absHref, parentSheet->charset()); in insertedIntoParent()
140 m_cachedSheet = cachedResourceLoader->requestCSSStyleSheet(absHref, parentSheet->charset()); in insertedIntoParent()
145 if (parentSheet && parentSheet->loadCompleted() && root == parentSheet) in insertedIntoParent()
146 parentSheet->document()->addPendingSheet(); in insertedIntoParent()
DMediaList.h47 static PassRefPtr<MediaList> create(CSSStyleSheet* parentSheet, const String& media) in create() argument
49 return adoptRef(new MediaList(parentSheet, media, false)); in create()
56 …static PassRefPtr<MediaList> createAllowingDescriptionSyntax(CSSStyleSheet* parentSheet, const Str… in createAllowingDescriptionSyntax() argument
58 return adoptRef(new MediaList(parentSheet, mediaQueryOrDescription, true)); in createAllowingDescriptionSyntax()
80 MediaList(CSSStyleSheet* parentSheet, bool fallbackToDescription);
81 MediaList(CSSStyleSheet* parentSheet, const String& media, bool fallbackToDescription);
DCSSStyleSheet.cpp54 CSSStyleSheet::CSSStyleSheet(CSSStyleSheet* parentSheet, const String& href, const KURL& baseURL, c… in CSSStyleSheet() argument
55 : StyleSheet(parentSheet, href, baseURL) in CSSStyleSheet()
58 , m_strictParsing(!parentSheet || parentSheet->useStrictParsing()) in CSSStyleSheet()
59 , m_isUserStyleSheet(parentSheet ? parentSheet->isUserStyleSheet() : false) in CSSStyleSheet()
82 CSSStyleSheet* parentSheet = ownerRule ? ownerRule->parentStyleSheet() : 0; in CSSStyleSheet() local
83 m_isUserStyleSheet = parentSheet ? parentSheet->isUserStyleSheet() : false; in CSSStyleSheet()
DMediaList.cpp60 MediaList::MediaList(CSSStyleSheet* parentSheet, bool fallbackToDescriptor) in MediaList() argument
61 : StyleBase(parentSheet) in MediaList()
66 MediaList::MediaList(CSSStyleSheet* parentSheet, const String& media, bool fallbackToDescriptor) in MediaList() argument
67 : StyleBase(parentSheet) in MediaList()
DStyleSheet.cpp28 StyleSheet::StyleSheet(StyleSheet* parentSheet, const String& originalURL, const KURL& finalURL) in StyleSheet() argument
29 : StyleList(parentSheet) in StyleSheet()
DStyleSheet.h70 StyleSheet(StyleSheet* parentSheet, const String& href, const KURL& finalURL);
DCSSStyleSheet.h109 …CSSStyleSheet(CSSStyleSheet* parentSheet, const String& originalURL, const KURL& finalURL, const S…
/external/webkit/Source/WebCore/xml/
DXSLImportRule.h40 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) in create() argument
42 return adoptRef(new XSLImportRule(parentSheet, href)); in create()
56 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
DXSLImportRule.cpp89 XSLStyleSheet* parentSheet = parentStyleSheet(); in loadSheet() local
90 if (!parentSheet->finalURL().isNull()) in loadSheet()
92 absHref = KURL(parentSheet->finalURL(), m_strHref).string(); in loadSheet()