Home
last modified time | relevance | path

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

12

/external/webkit/Source/WebCore/xml/
DXSLStyleSheetQt.cpp35 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bo… in XSLStyleSheet() function in WebCore::XSLStyleSheet
41 XSLStyleSheet::~XSLStyleSheet() in ~XSLStyleSheet()
45 bool XSLStyleSheet::isLoading() in isLoading()
51 void XSLStyleSheet::checkLoaded() in checkLoaded()
57 void XSLStyleSheet::clearDocuments() in clearDocuments()
62 CachedResourceLoader* XSLStyleSheet::cachedResourceLoader() in cachedResourceLoader()
70 bool XSLStyleSheet::parseString(const String& string, bool) in parseString()
80 void XSLStyleSheet::loadChildSheets() in loadChildSheets()
85 void XSLStyleSheet::loadChildSheet(const String&) in loadChildSheet()
90 Document* XSLStyleSheet::ownerDocument() in ownerDocument()
[all …]
DXSLStyleSheet.h42 class XSLStyleSheet : public StyleSheet {
45 …static PassRefPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, co… in create()
47 return adoptRef(new XSLStyleSheet(parentImport, originalURL, finalURL)); in create()
50 …static PassRefPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalU… in create()
52 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false)); in create()
54 …static PassRefPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& fin… in createEmbedded()
56 return adoptRef(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true)); in createEmbedded()
61 …static PassRefPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalUR… in createForXSLTProcessor()
63 return adoptRef(new XSLStyleSheet(parentNode, originalURL, finalURL, false)); in createForXSLTProcessor()
66 virtual ~XSLStyleSheet();
[all …]
DXSLStyleSheetLibxslt.cpp57 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& fina… in XSLStyleSheet() function in WebCore::XSLStyleSheet
67 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bo… in XSLStyleSheet() function in WebCore::XSLStyleSheet
77 XSLStyleSheet::~XSLStyleSheet() in ~XSLStyleSheet()
83 bool XSLStyleSheet::isLoading() in isLoading()
97 void XSLStyleSheet::checkLoaded() in checkLoaded()
107 xmlDocPtr XSLStyleSheet::document() in document()
114 void XSLStyleSheet::clearDocuments() in clearDocuments()
128 CachedResourceLoader* XSLStyleSheet::cachedResourceLoader() in cachedResourceLoader()
136 bool XSLStyleSheet::parseString(const String& string, bool) in parseString()
181 void XSLStyleSheet::loadChildSheets() in loadChildSheets()
[all …]
DXSLImportRule.cpp33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href) in XSLImportRule()
50 XSLStyleSheet* XSLImportRule::parentStyleSheet() const in parentStyleSheet()
52 return (parent() && parent()->isXSLStyleSheet()) ? static_cast<XSLStyleSheet*>(parent()) : 0; in parentStyleSheet()
60 m_styleSheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
62 XSLStyleSheet* parent = parentStyleSheet(); in setXSLStyleSheet()
86 cachedResourceLoader = static_cast<XSLStyleSheet*>(root)->cachedResourceLoader(); in loadSheet()
89 XSLStyleSheet* parentSheet = parentStyleSheet(); in loadSheet()
97 …if (parent->isXSLStyleSheet() && absHref == static_cast<XSLStyleSheet*>(parent)->finalURL().string… in loadSheet()
DXSLImportRule.h40 static PassRefPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href) in create()
48 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); } in styleSheet()
50 XSLStyleSheet* parentStyleSheet() const;
56 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
64 RefPtr<XSLStyleSheet> m_styleSheet;
DXSLTProcessor.h49 void setXSLStyleSheet(PassRefPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; } in setXSLStyleSheet()
70 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); } in xslStylesheet()
78 RefPtr<XSLStyleSheet> m_stylesheet;
DXSLTProcessorQt.cpp118 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet; in transformToString()
121 … stylesheet = XSLStyleSheet::createForXSLTProcessor(node->parentNode() ? node->parentNode() : node, in transformToString()
DXSLTProcessorLibxslt.cpp247 static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<XSLStyleSheet>& cachedStylesheet, Node* style… in xsltStylesheetPointer()
250 …cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(stylesheetRootNode->parentNode() ? styles… in xsltStylesheetPointer()
/external/webkit/Source/WebCore/loader/cache/
DCachedResourceLoader.cpp70 case CachedResource::XSLStyleSheet: in createResource()
201 …return static_cast<CachedXSLStyleSheet*>(requestResource(CachedResource::XSLStyleSheet, url, Strin… in requestXSLStyleSheet()
230 case CachedResource::XSLStyleSheet: in canRequest()
249 case CachedResource::XSLStyleSheet: in canRequest()
279 case CachedResource::XSLStyleSheet: in canRequest()
DCachedXSLStyleSheet.cpp41 : CachedResource(url, XSLStyleSheet) in CachedXSLStyleSheet()
DCachedResource.h65 , XSLStyleSheet enumerator
DCachedResourceRequest.cpp53 case CachedResource::XSLStyleSheet: in cachedResourceTypeToTargetType()
DCachedResource.cpp56 case CachedResource::XSLStyleSheet: in defaultPriorityForResourceType()
DMemoryCache.cpp623 case CachedResource::XSLStyleSheet: in getStatistics()
/external/webkit/Source/WebCore/dom/
DProcessingInstruction.cpp147 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL); in checkStyleSheet()
228 m_sheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
DDocument.cpp4086 processor->setXSLStyleSheet(static_cast<XSLStyleSheet*>(pi->sheet())); in applyXSLTransform()
/external/webkit/Source/WebCore/inspector/
DInspectorResourceAgent.cpp277 case CachedResource::XSLStyleSheet: in cachedResourceTypeString()
/external/webkit/Source/WebCore/
DWebCore.pro2500 xml/XSLStyleSheet.h \
DChangeLog-2011-02-1616033 Remove cached document reference from CSSStyleSheet and XSLStyleSheet.
16045 * xml/XSLStyleSheet.h:
16046 (WebCore::XSLStyleSheet::parentStyleSheet):
16048 (WebCore::XSLStyleSheet::XSLStyleSheet):
16049 (WebCore::XSLStyleSheet::cachedResourceLoader):
16050 (WebCore::XSLStyleSheet::setParentStyleSheet):
16051 (WebCore::XSLStyleSheet::ownerDocument):
16053 (WebCore::XSLStyleSheet::XSLStyleSheet):
16054 (WebCore::XSLStyleSheet::cachedResourceLoader):
16055 (WebCore::XSLStyleSheet::ownerDocument):
DChangeLog-2006-05-10460 * xml/XSLStyleSheet.cpp: (WebCore::XSLStyleSheet::parseString):
5887 * xml/XSLStyleSheet.cpp: Added.
5888 * xml/XSLStyleSheet.h: Added.
6209 * khtml/xsl/XSLStyleSheet.cpp:
9433 * khtml/xsl/XSLStyleSheet.cpp:
9434 (WebCore::XSLStyleSheet::XSLStyleSheet):
12074 * khtml/xsl/XSLStyleSheet.cpp:
DChangeLog-2008-08-1011383 * xml/XSLStyleSheet.cpp:
11384 (WebCore::XSLStyleSheet::checkLoaded):
11385 (WebCore::XSLStyleSheet::loadChildSheet):
11386 * xml/XSLStyleSheet.h:
11387 (WebCore::XSLStyleSheet::create):
11388 (WebCore::XSLStyleSheet::createEmbedded):
16425 * xml/XSLStyleSheet.cpp:
16426 (WebCore::XSLStyleSheet::parseString):
29952 the one in XSLStyleSheet was missed.
29956 * xml/XSLStyleSheet.cpp:
[all …]
DChangeLog-2006-12-3129477 * xml/XSLStyleSheet.cpp:
29478 (WebCore::XSLStyleSheet::loadChildSheets):
29479 (WebCore::XSLStyleSheet::locateStylesheetSubResource):
30476 * xml/XSLStyleSheet.cpp:
30477 * xml/XSLStyleSheet.h:
32786 * xml/XSLStyleSheet.cpp: (WebCore::XSLStyleSheet::parseString): Ditto.
44164 * xml/XSLStyleSheet.cpp:
44827 * xml/XSLStyleSheet.cpp:
45100 Split XSLImportRule out of XSLStyleSheet.* into separate
45109 * xml/XSLStyleSheet.cpp:
[all …]
DChangeLog-2010-05-2428019 (WebCore::XSLStyleSheet::parseString):
49411 * xml/XSLStyleSheet.h:
49412 (WebCore::XSLStyleSheet::create):
49413 (WebCore::XSLStyleSheet::createInline):
49415 (WebCore::XSLStyleSheet::XSLStyleSheet):
49416 (WebCore::XSLStyleSheet::parseString):
49417 (WebCore::XSLStyleSheet::loadChildSheets):
49419 (WebCore::XSLStyleSheet::XSLStyleSheet):
DChangeLog-2010-01-295967 evidence that we need to change the XSLStyleSheet behavior, which is
5974 * xml/XSLStyleSheet.h:
5975 (WebCore::XSLStyleSheet::create):
5976 (WebCore::XSLStyleSheet::createEmbedded):
5978 (WebCore::XSLStyleSheet::XSLStyleSheet):
5979 (WebCore::XSLStyleSheet::parseString):
5980 (WebCore::XSLStyleSheet::loadChildSheets):
5982 (WebCore::XSLStyleSheet::XSLStyleSheet):
51780 (WebCore::XSLStyleSheet::loadChildSheet):
51781 (WebCore::XSLStyleSheet::setParentStyleSheet):
[all …]
DGNUmakefile.list.am3688 Source/WebCore/xml/XSLStyleSheet.h \

12