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.h39 class XSLStyleSheet : public StyleSheet {
41 …static PassRefPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, co… in create()
44 return adoptRef(new XSLStyleSheet(parentImport, originalURL, finalURL)); in create()
46 …static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalU… in create()
49 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false)); in create()
51 …static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& fin… in createEmbedded()
54 return adoptRef(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true)); in createEmbedded()
59 …static PassRefPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalUR… in createForXSLTProcessor()
62 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false)); in createForXSLTProcessor()
65 virtual ~XSLStyleSheet();
[all …]
DXSLStyleSheetLibxslt.cpp41 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& fina… in XSLStyleSheet() function in WebCore::XSLStyleSheet
55 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bo… in XSLStyleSheet() function in WebCore::XSLStyleSheet
69 XSLStyleSheet::~XSLStyleSheet() in ~XSLStyleSheet()
80 bool XSLStyleSheet::isLoading() const in isLoading()
89 void XSLStyleSheet::checkLoaded() in checkLoaded()
93 if (XSLStyleSheet* styleSheet = parentStyleSheet()) in checkLoaded()
99 xmlDocPtr XSLStyleSheet::document() in document()
106 void XSLStyleSheet::clearDocuments() in clearDocuments()
116 ResourceFetcher* XSLStyleSheet::fetcher() in fetcher()
124 bool XSLStyleSheet::parseString(const String& source) in parseString()
[all …]
DXSLImportRule.h39 static PassOwnPtr<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 XSLStyleSheet* m_parentStyleSheet;
63 RefPtr<XSLStyleSheet> m_styleSheet;
DXSLImportRule.cpp33 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()
77 XSLStyleSheet* rootSheet = parentStyleSheet(); in loadSheet()
80 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet()) in loadSheet()
88 XSLStyleSheet* parentSheet = parentStyleSheet(); in loadSheet()
95 …for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->pare… in loadSheet()
DXSLTProcessor.h51 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } in setXSLStyleSheet()
75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } in xslStylesheet()
85 RefPtr<XSLStyleSheet> m_stylesheet;
DXSLTProcessorLibxslt.cpp222 static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<XSLStyleSheet>& cachedStylesheet, Node* style… in xsltStylesheetPointer()
225 …cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(stylesheetRootNode->parentNode() ? styles… in xsltStylesheetPointer()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DXSLStyleSheetResource.h54 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
DXSLStyleSheetResource.cpp40 : StyleSheetResource(resourceRequest, XSLStyleSheet) in XSLStyleSheetResource()
DResourceFetcher.cpp91 case Resource::XSLStyleSheet: in createResource()
127 case Resource::XSLStyleSheet: in loadPriority()
195 case Resource::XSLStyleSheet: in requestTargetType()
355 return toXSLStyleSheetResource(requestResource(Resource::XSLStyleSheet, request)); in fetchXSLStyleSheet()
384 case Resource::XSLStyleSheet: in checkInsecureContent()
470 case Resource::XSLStyleSheet: in canRequest()
481 case Resource::XSLStyleSheet: in canRequest()
DResource.h67 XSLStyleSheet, enumerator
DResource.cpp899 case Resource::XSLStyleSheet: in ResourceTypeName()
DMemoryCache.cpp549 case Resource::XSLStyleSheet: in getStatistics()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DProcessingInstruction.cpp118 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL); in checkStyleSheet()
195 m_sheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorPageAgent.cpp300 case Resource::XSLStyleSheet: in cachedResourceType()
/external/chromium_org/third_party/WebKit/Source/core/
Dcore.gypi1814 'xml/XSLStyleSheet.h',