/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XSLStyleSheet.h | 38 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 …]
|
D | XSLStyleSheetLibxslt.cpp | 40 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 …]
|
D | XSLImportRule.h | 38 …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;
|
D | XSLImportRule.cpp | 35 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()
|
D | XSLTProcessor.h | 52 …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;
|
D | XSLTProcessorLibxslt.cpp | 221 static xsltStylesheetPtr xsltStylesheetPointer(Document* document, RefPtrWillBeMember<XSLStyleSheet… in xsltStylesheetPointer() 225 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor( in xsltStylesheetPointer()
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | XSLStyleSheetResource.h | 51 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
|
D | XSLStyleSheetResource.cpp | 38 : StyleSheetResource(resourceRequest, XSLStyleSheet, "text/xsl", charset) in XSLStyleSheetResource()
|
D | ResourceFetcher.cpp | 101 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()
|
D | Resource.h | 69 XSLStyleSheet, enumerator
|
D | Resource.cpp | 973 case Resource::XSLStyleSheet: in resourceTypeToString() 1008 case Resource::XSLStyleSheet: in ResourceTypeName()
|
D | MemoryCache.cpp | 632 case Resource::XSLStyleSheet: in getStatistics()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ProcessingInstruction.cpp | 143 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/ |
D | InspectorPageAgent.cpp | 382 case Resource::XSLStyleSheet: in cachedResourceType()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | core.gypi | 1967 'xml/XSLStyleSheet.h',
|