HomeSort by relevance Sort by last modified time
    Searched refs:XSLStyleSheet (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLImportRule.h 28 #include "core/xml/XSLStyleSheet.h"
39 static PassOwnPtrWillBeRawPtr<XSLImportRule> create(XSLStyleSheet* parentSheet, const String& href)
49 XSLStyleSheet* styleSheet() const { return m_styleSheet.get(); }
51 XSLStyleSheet* parentStyleSheet() const { return m_parentStyleSheet; }
52 void setParentStyleSheet(XSLStyleSheet* styleSheet) { m_parentStyleSheet = styleSheet; }
58 XSLImportRule(XSLStyleSheet* parentSheet, const String& href);
62 RawPtrWillBeMember<XSLStyleSheet> m_parentStyleSheet;
64 RefPtrWillBeMember<XSLStyleSheet> m_styleSheet;
XSLStyleSheet.h 38 class XSLStyleSheet FINAL : public StyleSheet {
40 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
43 return adoptRefWillBeNoop(new XSLStyleSheet(parentImport, originalURL, finalURL));
45 static PassRefPtrWillBeRawPtr<XSLStyleSheet> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
48 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
50 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
53 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, finalURL.string(), finalURL, true));
59 static PassRefPtrWillBeRawPtr<XSLStyleSheet> createForXSLTProcessor(Node* parentNode, const String& originalURL, const KURL& finalURL)
62 return adoptRefWillBeNoop(new XSLStyleSheet(parentNode, originalURL, finalURL, false));
65 virtual ~XSLStyleSheet();
    [all...]
XSLStyleSheetLibxslt.cpp 23 #include "core/xml/XSLStyleSheet.h"
40 XSLStyleSheet::XSLStyleSheet(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL)
56 XSLStyleSheet::XSLStyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
70 XSLStyleSheet::~XSLStyleSheet()
82 bool XSLStyleSheet::isLoading() const
91 void XSLStyleSheet::checkLoaded()
95 if (XSLStyleSheet* styleSheet = parentStyleSheet()
    [all...]
XSLImportRule.cpp 33 XSLImportRule::XSLImportRule(XSLStyleSheet* parent, const String& href)
57 m_styleSheet = XSLStyleSheet::create(this, href, baseURL);
59 XSLStyleSheet* parent = parentStyleSheet();
78 XSLStyleSheet* rootSheet = parentStyleSheet();
81 while (XSLStyleSheet* parentSheet = rootSheet->parentStyleSheet())
89 XSLStyleSheet* parentSheet = parentStyleSheet();
97 for (XSLStyleSheet* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
XSLTProcessor.h 28 #include "core/xml/XSLStyleSheet.h"
51 void setXSLStyleSheet(PassRefPtrWillBeRawPtr<XSLStyleSheet> styleSheet) { m_stylesheet = styleSheet; }
75 XSLStyleSheet* xslStylesheet() const { return m_stylesheet.get(); }
87 RefPtrWillBeMember<XSLStyleSheet> m_stylesheet;
XSLTProcessorLibxslt.cpp 35 #include "core/xml/XSLStyleSheet.h"
110 LocalFrame* frame = globalProcessor->xslStylesheet()->ownerDocument()->frame();
127 return globalProcessor->xslStylesheet()->locateStylesheetSubResource(((xsltStylesheetPtr)ctxt)->doc, uri);
221 static xsltStylesheetPtr xsltStylesheetPointer(RefPtrWillBeMember<XSLStyleSheet>& cachedStylesheet, Node* stylesheetRootNode)
224 cachedStylesheet = XSLStyleSheet::createForXSLTProcessor(
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
XSLStyleSheetResource.h 51 DEFINE_RESOURCE_TYPE_CASTS(XSLStyleSheet);
XSLStyleSheetResource.cpp 39 : StyleSheetResource(resourceRequest, XSLStyleSheet, "text/xsl", charset)
Resource.h 69 XSLStyleSheet,
ResourceFetcher.cpp 94 case Resource::XSLStyleSheet:
130 case Resource::XSLStyleSheet:
196 case Resource::XSLStyleSheet:
348 return toXSLStyleSheetResource(requestResource(Resource::XSLStyleSheet, request));
407 case Resource::XSLStyleSheet:
525 case Resource::XSLStyleSheet:
540 case Resource::XSLStyleSheet:
    [all...]
Resource.cpp 946 case Resource::XSLStyleSheet:
981 case Resource::XSLStyleSheet:
982 return "XSLStyleSheet";
MemoryCache.cpp 586 case Resource::XSLStyleSheet:
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.cpp 34 #include "core/xml/XSLStyleSheet.h"
139 // We need to make a synthetic XSLStyleSheet that is embedded.
144 m_sheet = XSLStyleSheet::createEmbedded(this, finalURL);
221 m_sheet = XSLStyleSheet::create(this, href, baseURL);
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp 309 case Resource::XSLStyleSheet:
    [all...]

Completed in 1416 milliseconds