/external/webkit/Source/WebCore/xml/ |
D | XSLStyleSheetQt.cpp | 35 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 …]
|
D | XSLStyleSheet.h | 42 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 …]
|
D | XSLStyleSheetLibxslt.cpp | 57 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 …]
|
D | XSLImportRule.cpp | 33 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()
|
D | XSLImportRule.h | 40 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;
|
D | XSLTProcessor.h | 49 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;
|
D | XSLTProcessorQt.cpp | 118 RefPtr<XSLStyleSheet> stylesheet = m_stylesheet; in transformToString() 121 … stylesheet = XSLStyleSheet::createForXSLTProcessor(node->parentNode() ? node->parentNode() : node, in transformToString()
|
D | XSLTProcessorLibxslt.cpp | 247 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/ |
D | CachedResourceLoader.cpp | 70 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()
|
D | CachedXSLStyleSheet.cpp | 41 : CachedResource(url, XSLStyleSheet) in CachedXSLStyleSheet()
|
D | CachedResource.h | 65 , XSLStyleSheet enumerator
|
D | CachedResourceRequest.cpp | 53 case CachedResource::XSLStyleSheet: in cachedResourceTypeToTargetType()
|
D | CachedResource.cpp | 56 case CachedResource::XSLStyleSheet: in defaultPriorityForResourceType()
|
D | MemoryCache.cpp | 623 case CachedResource::XSLStyleSheet: in getStatistics()
|
/external/webkit/Source/WebCore/dom/ |
D | ProcessingInstruction.cpp | 147 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL); in checkStyleSheet() 228 m_sheet = XSLStyleSheet::create(this, href, baseURL); in setXSLStyleSheet()
|
D | Document.cpp | 4086 processor->setXSLStyleSheet(static_cast<XSLStyleSheet*>(pi->sheet())); in applyXSLTransform()
|
/external/webkit/Source/WebCore/inspector/ |
D | InspectorResourceAgent.cpp | 277 case CachedResource::XSLStyleSheet: in cachedResourceTypeString()
|
/external/webkit/Source/WebCore/ |
D | WebCore.pro | 2500 xml/XSLStyleSheet.h \
|
D | ChangeLog-2011-02-16 | 16033 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):
|
D | ChangeLog-2006-05-10 | 460 * 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:
|
D | ChangeLog-2008-08-10 | 11383 * 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 …]
|
D | ChangeLog-2006-12-31 | 29477 * 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 …]
|
D | ChangeLog-2010-05-24 | 28019 (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):
|
D | ChangeLog-2010-01-29 | 5967 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 …]
|
D | GNUmakefile.list.am | 3688 Source/WebCore/xml/XSLStyleSheet.h \
|