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

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXSLImportRule.h27 #include "core/xml/XSLStyleSheet.h"
38 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
51 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = styleSheet; }
57 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
61 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
63 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet;
H A DXSLStyleSheet.h38 class XSLStyleSheet FINAL : public StyleSheet {
40 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
43 return adoptRefWillBeNoop(new XSLStyleSheet(parentImport, originalURL, finalURL));
45 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
48 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
50 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
53 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true));
59 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createForXSLTProcessor(Document* document, Node* stylesheetRootNode, const String& originalURL, const KURL& finalURL)
62 return adoptRefWillBeNoop(new XSLStyleSheet(document, stylesheetRootNode, originalURL, finalURL, false));
65 virtual ~XSLStyleSheet();
[all...]
H A DXSLStyleSheetLibxslt.cpp23 #include "core/xml/XSLStyleSheet.h"
40 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL) function in class:blink::XSLStyleSheet
57 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded) function in class:blink::XSLStyleSheet
72 XSLStyleSheet::XSLStyleSheet(Document* ownerDocument, Node* styleSheetRootNode, const String& originalURL, const KURL& finalURL, bool embedded) function in class:blink::XSLStyleSheet
87 XSLStyleSheet::~XSLStyleSheet()
99 bool XSLStyleSheet
[all...]
H A DXSLImportRule.cpp35 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href)
55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
57 XSLStyleSheet* parent = parentStyleSheet();
76 XSLStyleSheet* rootSheet = parentStyleSheet();
79 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet())
87 XSLStyleSheet* parentSheet = parentStyleSheet();
95 for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
H A DXSLTProcessor.h28 #include "core/xml/XSLStyleSheet.h"
52 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
76 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); }
87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet;
H A DXSLTProcessorLibxslt.cpp36 #include "core/xml/XSLStyleSheet.h"
221 static xsltStylesheetPtr xsltStylesheetPointer(Document* document, RefPtrWillBeMember<XSLStyleSheet>& cachedStylesheet, Node* stylesheetRootNode)
225 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DXSLStyleSheetResource.h51 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
H A DXSLStyleSheetResource.cpp38 : StyleSheetResource(resourceRequest, XSLStyleSheet, "text/xsl", charset)
H A DResourceFetcher.cpp101 case Resource::XSLStyleSheet:
142 case Resource::XSLStyleSheet:
209 case Resource::XSLStyleSheet:
373 return toXSLStyleSheetResource(requestResource(Resource::XSLStyleSheet, request));
477 case Resource::XSLStyleSheet:
503 case Resource::XSLStyleSheet:
H A DResource.h69 XSLStyleSheet, enumerator in enum:blink::Resource::Type
H A DResource.cpp973 case Resource::XSLStyleSheet:
1008 case Resource::XSLStyleSheet:
1009 return "XSLStyleSheet";
H A DMemoryCache.cpp632 case Resource::XSLStyleSheet:
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DProcessingInstruction.cpp34 #include "core/xml/XSLStyleSheet.h"
138 // We need to make a synthetic XSLStyleSheet that is embedded.
143 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL);
220 m_sheet = XSLStyleSheet::create(this, href, baseURL);
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorPageAgent.cpp382 case Resource::XSLStyleSheet:

Completed in 2399 milliseconds