HomeSort by relevance Sort by last modified time
    Searched refs:XSLStyleSheet (Results 1 - 17 of 17) sorted by null

  /external/webkit/Source/WebCore/xml/
XSLStyleSheetQt.cpp 23 #include "XSLStyleSheet.h"
35 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
41 XSLStyleSheet::~XSLStyleSheet()
45 bool XSLStyleSheet::isLoading()
51 void XSLStyleSheet::checkLoaded()
57 void XSLStyleSheet::clearDocuments()
62 CachedResourceLoader* XSLStyleSheet::cachedResourceLoader()
70 bool XSLStyleSheet::parseString(const String& string, bool
    [all...]
XSLStyleSheet.h 42 class XSLStyleSheet : public StyleSheet {
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...]
XSLImportRule.h 31 #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;
XSLImportRule.cpp 29 #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())
XSLStyleSheetLibxslt.cpp 23 #include "XSLStyleSheet.h"
57 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL)
67 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
77 XSLStyleSheet::~XSLStyleSheet()
83 bool XSLStyleSheet::isLoading()
97 void XSLStyleSheet::checkLoaded()
107 xmlDocPtr XSLStyleSheet::document(
    [all...]
XSLTProcessor.h 29 #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;
XSLTProcessorQt.cpp 118 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet;
121 stylesheet = XSLStyleSheet::createForXSLTProcessor(node->parentNode() ? node->parentNode() : node,
XSLTProcessorLibxslt.cpp 39 #include "XSLStyleSheet.h"
139 if (Frame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame())
154 return globalProcessor->xslStylesheet()->locateStylesheetSubResource(((xsltStylesheetPtr)ctxt)->doc, uri);
247 static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<XSLStyleSheet>& cachedStylesheet, Node* stylesheetRootNode)
250 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(stylesheetRootNode->parentNode() ? stylesheetRootNode->parentNode() : stylesheetRootNode,
  /external/webkit/Source/WebCore/loader/cache/
CachedXSLStyleSheet.cpp 41 : CachedResource(url, XSLStyleSheet)
CachedResourceLoader.cpp 70 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:
CachedResource.h 65 , XSLStyleSheet
CachedResourceRequest.cpp 53 case CachedResource::XSLStyleSheet:
CachedResource.cpp 56 case CachedResource::XSLStyleSheet:
MemoryCache.cpp 623 case CachedResource::XSLStyleSheet:
  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.cpp 32 #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);
Document.cpp     [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 277 case CachedResource::XSLStyleSheet:

Completed in 674 milliseconds