Searched refs:XSLStyleSheet (Results 1 - 17 of 17) sorted by relevance

/external/webkit/Source/WebCore/xml/
H A DXSLStyleSheetQt.cpp23 #include "XSLStyleSheet.h"
35 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded) function in class:WebCore::XSLStyleSheet
41 XSLStyleSheet::~XSLStyleSheet()
45 bool XSLStyleSheet::isLoading()
51 void XSLStyleSheet::checkLoaded()
57 void XSLStyleSheet::clearDocuments()
62 CachedResourceLoader* XSLStyleSheet::cachedResourceLoader()
70 bool XSLStyleSheet
[all...]
H A DXSLStyleSheet.h42 class XSLStyleSheet : public StyleSheet { class in namespace:WebCore
45 static PassRefPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
47 return adoptRef(new XSLStyleSheet(parentImport, originalURL, finalURL));
50 static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
52 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
54 static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
56 return adoptRef(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true));
61 static PassRefPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalURL, const KURL& finalURL)
63 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
66 virtual ~XSLStyleSheet();
[all...]
H A DXSLImportRule.cpp29 #include "XSLStyleSheet.h"
33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href)
50 XSLStyleSheet* XSLImportRule::parentStyleSheet() const
52 return (parent() && parent()->isXSLStyleSheet()) ? static_cast<XSLStyleSheet*>(parent()) : 0;
60 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
62 XSLStyleSheet* parent = parentStyleSheet();
86 cachedResourceLoader = static_cast<XSLStyleSheet*>(root)->cachedResourceLoader();
89 XSLStyleSheet* parentSheet = parentStyleSheet();
97 if (parent->isXSLStyleSheet() && absHref == static_cast<XSLStyleSheet*>(parent)->finalURL().string())
H A DXSLImportRule.h31 #include "XSLStyleSheet.h"
40 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
50 XSLStyleSheet* parentStyleSheet() const;
56 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
64 RefPtr<XSLStyleSheet> m_styleSheet;
H A DXSLStyleSheetLibxslt.cpp23 #include "XSLStyleSheet.h"
57 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL) function in class:WebCore::XSLStyleSheet
67 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded) function in class:WebCore::XSLStyleSheet
77 XSLStyleSheet::~XSLStyleSheet()
83 bool XSLStyleSheet::isLoading()
97 void XSLStyleSheet::checkLoaded()
107 xmlDocPtr XSLStyleSheet
[all...]
H A DXSLTProcessor.h29 #include "XSLStyleSheet.h"
49 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
70 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); }
78 RefPtr<XSLStyleSheet> m_stylesheet;
H A DXSLTProcessorQt.cpp118 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet;
121 stylesheet = XSLStyleSheet::createForXSLTProcessor(node->parentNode() ? node->parentNode() : node,
H A DXSLTProcessorLibxslt.cpp39 #include "XSLStyleSheet.h"
247 static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<XSLStyleSheet>& cachedStylesheet, Node* stylesheetRootNode)
250 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(stylesheetRootNode->parentNode() ? stylesheetRootNode->parentNode() : stylesheetRootNode,
/external/webkit/Source/WebCore/loader/cache/
H A DCachedXSLStyleSheet.cpp41 : CachedResource(url, XSLStyleSheet)
H A DCachedResourceLoader.cpp70 case CachedResource::XSLStyleSheet:
201 return static_cast<CachedXSLStyleSheet*>(requestResource(CachedResource::XSLStyleSheet, url, String()));
230 case CachedResource::XSLStyleSheet:
249 case CachedResource::XSLStyleSheet:
279 case CachedResource::XSLStyleSheet:
H A DCachedResource.h65 , XSLStyleSheet enumerator in enum:WebCore::CachedResource::Type
H A DCachedResourceRequest.cpp53 case CachedResource::XSLStyleSheet:
H A DCachedResource.cpp56 case CachedResource::XSLStyleSheet:
H A DMemoryCache.cpp623 case CachedResource::XSLStyleSheet:
/external/webkit/Source/WebCore/dom/
H A DProcessingInstruction.cpp32 #include "XSLStyleSheet.h"
143 // We need to make a synthetic XSLStyleSheet that is embedded. It needs to be able
147 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL);
228 m_sheet = XSLStyleSheet::create(this, href, baseURL);
H A DDocument.cpp4086 processor->setXSLStyleSheet(static_cast<XSLStyleSheet*>(pi->sheet()));
/external/webkit/Source/WebCore/inspector/
H A DInspectorResourceAgent.cpp277 case CachedResource::XSLStyleSheet:

Completed in 795 milliseconds