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

  /external/webkit/WebCore/xml/
XSLStyleSheetQt.cpp 23 #include "XSLStyleSheet.h"
36 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
43 XSLStyleSheet::~XSLStyleSheet()
47 bool XSLStyleSheet::isLoading()
53 void XSLStyleSheet::checkLoaded()
59 void XSLStyleSheet::clearDocuments()
64 DocLoader* XSLStyleSheet::docLoader()
71 bool XSLStyleSheet::parseString(const String& string, bool
    [all...]
XSLImportRule.h 31 #include "XSLStyleSheet.h"
39 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
47 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
49 XSLStyleSheet* parentStyleSheet() const;
55 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
63 RefPtr<XSLStyleSheet> m_styleSheet;
XSLStyleSheet.h 43 class XSLStyleSheet : public StyleSheet {
46 static PassRefPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
48 return adoptRef(new XSLStyleSheet(parentImport, originalURL, finalURL));
51 static PassRefPtr<XSLStyleSheet> create(Node* parentNode, const String& originalURL, const KURL& finalURL)
53 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
55 static PassRefPtr<XSLStyleSheet> createInline(Node* parentNode, const KURL& finalURL)
57 return adoptRef(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true));
60 virtual ~XSLStyleSheet();
77 void setParentStyleSheet(XSLStyleSheet* parent);
93 XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
    [all...]
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 docLoader = static_cast<XSLStyleSheet*>(root)->docLoader();
89 XSLStyleSheet* parentSheet = parentStyleSheet();
97 if (parent->isXSLStyleSheet() && absHref == static_cast<XSLStyleSheet*>(parent)->finalURL().string())
XSLStyleSheetLibxslt.cpp 23 #include "XSLStyleSheet.h"
58 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL)
69 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
80 XSLStyleSheet::~XSLStyleSheet()
86 bool XSLStyleSheet::isLoading()
100 void XSLStyleSheet::checkLoaded()
110 xmlDocPtr XSLStyleSheet::document(
    [all...]
XSLTProcessor.h 30 #include "XSLStyleSheet.h"
48 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
69 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); }
77 RefPtr<XSLStyleSheet> m_stylesheet;
XSLTProcessorQt.cpp 120 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet;
123 stylesheet = XSLStyleSheet::create(node->parent() ? node->parent() : node,
XSLTProcessorLibxslt.cpp 40 #include "XSLStyleSheet.h"
132 if (Frame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame())
147 return globalProcessor->xslStylesheet()->locateStylesheetSubResource(((xsltStylesheetPtr)ctxt)->doc, uri);
225 static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<XSLStyleSheet>& cachedStylesheet, Node* stylesheetRootNode)
228 cachedStylesheet = XSLStyleSheet::create(stylesheetRootNode->parent() ? stylesheetRootNode->parent() : stylesheetRootNode,
  /external/webkit/WebCore/loader/
CachedXSLStyleSheet.cpp 40 : CachedResource(url, XSLStyleSheet)
DocLoader.cpp 168 return static_cast<CachedXSLStyleSheet*>(requestResource(CachedResource::XSLStyleSheet, url, String()));
193 case CachedResource::XSLStyleSheet:
220 case CachedResource::XSLStyleSheet:
CachedResource.h 61 , XSLStyleSheet
Cache.cpp 82 case CachedResource::XSLStyleSheet:
683 case CachedResource::XSLStyleSheet:
loader.cpp 79 case CachedResource::XSLStyleSheet:
101 case CachedResource::XSLStyleSheet:
  /external/webkit/WebCore/dom/
ProcessingInstruction.cpp 32 #include "XSLStyleSheet.h"
139 // We need to make a synthetic XSLStyleSheet that is embedded. It needs to be able
143 m_sheet = XSLStyleSheet::createInline(this, finalURL);
221 m_sheet = XSLStyleSheet::create(this, href, baseURL);
Document.cpp     [all...]
  /external/webkit/WebCore/inspector/
InspectorResource.cpp 255 case CachedResource::XSLStyleSheet:

Completed in 129 milliseconds