OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:xslstylesheet
(Results
1 - 15
of
15
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/xml/
XSLStyleSheet.h
39
class
XSLStyleSheet
: public StyleSheet {
41
static PassRefPtr<
XSLStyleSheet
> create(XSLImportRule* parentImport, const String& originalURL, const KURL& finalURL)
44
return adoptRef(new
XSLStyleSheet
(parentImport, originalURL, finalURL));
46
static PassRefPtr<
XSLStyleSheet
> create(ProcessingInstruction* parentNode, const String& originalURL, const KURL& finalURL)
49
return adoptRef(new
XSLStyleSheet
(parentNode, originalURL, finalURL, false));
51
static PassRefPtr<
XSLStyleSheet
> createEmbedded(ProcessingInstruction* parentNode, const KURL& finalURL)
54
return adoptRef(new
XSLStyleSheet
(parentNode, finalURL.string(), finalURL, true));
59
static PassRefPtr<
XSLStyleSheet
> createForXSLTProcessor(Node* parentNode, const String& originalURL, const KURL& finalURL)
62
return adoptRef(new
XSLStyleSheet
(parentNode, originalURL, finalURL, false));
65
virtual ~
XSLStyleSheet
();
[
all
...]
XSLImportRule.h
29
#include "core/xml/
XSLStyleSheet
.h"
39
static PassOwnPtr<XSLImportRule> create(
XSLStyleSheet
* parentSheet, const String& href)
48
XSLStyleSheet
* styleSheet() const { return m_styleSheet.get(); }
50
XSLStyleSheet
* parentStyleSheet() const { return m_parentStyleSheet; }
51
void setParentStyleSheet(
XSLStyleSheet
* styleSheet) { m_parentStyleSheet = styleSheet; }
57
XSLImportRule(
XSLStyleSheet
* parentSheet, const String& href);
61
XSLStyleSheet
* m_parentStyleSheet;
63
RefPtr<
XSLStyleSheet
> m_styleSheet;
XSLStyleSheetLibxslt.cpp
23
#include "core/xml/
XSLStyleSheet
.h"
41
XSLStyleSheet
::
XSLStyleSheet
(XSLImportRule* parentRule, const String& originalURL, const KURL& finalURL)
55
XSLStyleSheet
::
XSLStyleSheet
(Node* parentNode, const String& originalURL, const KURL& finalURL, bool embedded)
69
XSLStyleSheet
::~
XSLStyleSheet
()
80
bool
XSLStyleSheet
::isLoading() const
89
void
XSLStyleSheet
::checkLoaded()
93
if (
XSLStyleSheet
* styleSheet = parentStyleSheet()
[
all
...]
XSLTProcessor.h
29
#include "core/xml/
XSLStyleSheet
.h"
51
void setXSLStyleSheet(PassRefPtr<
XSLStyleSheet
> styleSheet) { m_stylesheet = styleSheet; }
75
XSLStyleSheet
*
xslStylesheet
() const { return m_stylesheet.get(); }
85
RefPtr<
XSLStyleSheet
> m_stylesheet;
XSLImportRule.cpp
33
XSLImportRule::XSLImportRule(
XSLStyleSheet
* parent, const String& href)
55
m_styleSheet =
XSLStyleSheet
::create(this, href, baseURL);
57
XSLStyleSheet
* parent = parentStyleSheet();
77
XSLStyleSheet
* rootSheet = parentStyleSheet();
80
while (
XSLStyleSheet
* parentSheet = rootSheet->parentStyleSheet())
88
XSLStyleSheet
* parentSheet = parentStyleSheet();
95
for (
XSLStyleSheet
* parentSheet = parentStyleSheet(); parentSheet; parentSheet = parentSheet->parentStyleSheet()) {
XSLTProcessorLibxslt.cpp
39
#include "core/xml/
XSLStyleSheet
.h"
112
Frame* frame = globalProcessor->
xslStylesheet
()->ownerDocument()->frame();
129
return globalProcessor->
xslStylesheet
()->locateStylesheetSubResource(((xsltStylesheetPtr)ctxt)->doc, uri);
222
static xsltStylesheetPtr xsltStylesheetPointer(RefPtr<
XSLStyleSheet
>& cachedStylesheet, Node* stylesheetRootNode)
225
cachedStylesheet =
XSLStyleSheet
::createForXSLTProcessor(stylesheetRootNode->parentNode() ? stylesheetRootNode->parentNode() : stylesheetRootNode,
/external/chromium_org/third_party/WebKit/Source/core/dom/
ProcessingInstruction.cpp
34
#include "core/xml/
XSLStyleSheet
.h"
114
// We need to make a synthetic
XSLStyleSheet
that is embedded. It needs to be able
118
m_sheet =
XSLStyleSheet
::createEmbedded(this, finalURL);
195
m_sheet =
XSLStyleSheet
::create(this, href, baseURL);
/external/chromium_org/third_party/WebKit/Source/core/fetch/
XSLStyleSheetResource.h
54
DEFINE_RESOURCE_TYPE_CASTS(
XSLStyleSheet
);
XSLStyleSheetResource.cpp
40
: StyleSheetResource(resourceRequest,
XSLStyleSheet
)
ResourceFetcher.cpp
91
case Resource::
XSLStyleSheet
:
127
case Resource::
XSLStyleSheet
:
195
case Resource::
XSLStyleSheet
:
355
return toXSLStyleSheetResource(requestResource(Resource::
XSLStyleSheet
, request));
384
case Resource::
XSLStyleSheet
:
470
case Resource::
XSLStyleSheet
:
481
case Resource::
XSLStyleSheet
:
[
all
...]
Resource.h
67
XSLStyleSheet
,
Resource.cpp
899
case Resource::
XSLStyleSheet
:
900
return "
XSLStyleSheet
";
MemoryCache.cpp
549
case Resource::
XSLStyleSheet
:
/external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorPageAgent.cpp
300
case Resource::
XSLStyleSheet
:
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/
core.gypi
[
all
...]
Completed in 7213 milliseconds