Home
last modified time | relevance | path

Searched refs:XSLStyleSheet (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/xml/
DXSLStyleSheet.h38 class XSLStyleSheet FINAL : public StyleSheet {
40 …static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& ori… in create()
43 return adoptRefWillBeNoop(new XSLStyleSheet(parentImport, originalURL, finalURL)); in create()
45 …static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const Strin… in create()
48 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, finalURL, false)); in create()
50 …static PassRefPtrWillBeRawPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, con… in createEmbedded()
53 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true)); in createEmbedded()
59 …static PassRefPtrWillBeRawPtr<XSLStyleSheet> createForXSLTProcessor(Document* document, Node* styl… in createForXSLTProcessor()
62 …return adoptRefWillBeNoop(new XSLStyleSheet(document, stylesheetRootNode, originalURL, finalURL, f… in createForXSLTProcessor()
65 virtual ~XSLStyleSheet();
[all …]
DXSLStyleSheetLibxslt.cpp40 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& fina… in XSLStyleSheet() function in blink::XSLStyleSheet
57 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bo… in XSLStyleSheet() function in blink::XSLStyleSheet
72 XSLStyleSheet::XSLStyleSheet(Document* ownerDocument, Node* styleSheetRootNode, const String& origi… in XSLStyleSheet() function in blink::XSLStyleSheet
87 XSLStyleSheet::~XSLStyleSheet() in ~XSLStyleSheet()
99 bool XSLStyleSheet::isLoading() const in isLoading()
108 void XSLStyleSheet::checkLoaded() in checkLoaded()
112 if (XSLStyleSheet* styleSheet = parentStyleSheet()) in checkLoaded()
118 xmlDocPtr XSLStyleSheet::document() in document()
125 void XSLStyleSheet::clearDocuments() in clearDocuments()
135 ResourceFetcher* XSLStyleSheet::fetcher() in fetcher()
[all …]
DXSLImportRule.h38 …static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) in create()
48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } in styleSheet()
50 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; } in parentStyleSheet()
51 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = styleSheet; } in setParentStyleSheet()
57 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
61 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
63 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet;
DXSLImportRule.cpp35 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href) in XSLImportRule()
55 m_styleSheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
57 XSLStyleSheet* parent = parentStyleSheet(); in setXSLStyleSheet()
76 XSLStyleSheet* rootSheet = parentStyleSheet(); in loadSheet()
79 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet()) in loadSheet()
87 XSLStyleSheet* parentSheet = parentStyleSheet(); in loadSheet()
95 …for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->pare… in loadSheet()
DXSLTProcessor.h52 …void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleShee… in setXSLStyleSheet()
76 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } in xslStylesheet()
87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet;
DXSLTProcessorLibxslt.cpp221 static xsltStylesheetPtr xsltStylesheetPointer(Document* document, RefPtrWillBeMember<XSLStyleSheet in xsltStylesheetPointer()
225 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor( in xsltStylesheetPointer()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DXSLStyleSheetResource.h51 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
DXSLStyleSheetResource.cpp38 : StyleSheetResource(resourceRequest, XSLStyleSheet, "text/xsl", charset) in XSLStyleSheetResource()
DResourceFetcher.cpp101 case Resource::XSLStyleSheet: in createResource()
142 case Resource::XSLStyleSheet: in loadPriority()
209 case Resource::XSLStyleSheet: in requestContextFromType()
373 return toXSLStyleSheetResource(requestResource(Resource::XSLStyleSheet, request)); in fetchXSLStyleSheet()
477 case Resource::XSLStyleSheet: in canRequest()
503 case Resource::XSLStyleSheet: in canRequest()
DResource.h69 XSLStyleSheet, enumerator
DResource.cpp973 case Resource::XSLStyleSheet: in resourceTypeToString()
1008 case Resource::XSLStyleSheet: in ResourceTypeName()
DMemoryCache.cpp632 case Resource::XSLStyleSheet: in getStatistics()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DProcessingInstruction.cpp143 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL); in process()
220 m_sheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorPageAgent.cpp382 case Resource::XSLStyleSheet: in cachedResourceType()
/external/chromium_org/third_party/WebKit/Source/core/
Dcore.gypi1967 'xml/XSLStyleSheet.h',