/external/chromium_org/third_party/WebKit/Source/core/xml/ |
D | XSLStyleSheet.h | 39 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 …]
|
D | XSLStyleSheetLibxslt.cpp | 41 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 …]
|
D | XSLImportRule.h | 39 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;
|
D | XSLImportRule.cpp | 33 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()
|
D | XSLTProcessor.h | 51 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;
|
D | XSLTProcessorLibxslt.cpp | 222 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/ |
D | XSLStyleSheetResource.h | 54 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
|
D | XSLStyleSheetResource.cpp | 40 : StyleSheetResource(resourceRequest, XSLStyleSheet) in XSLStyleSheetResource()
|
D | ResourceFetcher.cpp | 91 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()
|
D | Resource.h | 67 XSLStyleSheet, enumerator
|
D | Resource.cpp | 899 case Resource::XSLStyleSheet: in ResourceTypeName()
|
D | MemoryCache.cpp | 549 case Resource::XSLStyleSheet: in getStatistics()
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
D | ProcessingInstruction.cpp | 118 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/ |
D | InspectorPageAgent.cpp | 300 case Resource::XSLStyleSheet: in cachedResourceType()
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | core.gypi | 1814 'xml/XSLStyleSheet.h',
|