OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:isXMLMIMEType
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/dom/
DOMImplementationTest.cpp
71
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("text/xml"));
72
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("Text/xml"));
73
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("tEXt/XML"));
74
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("application/xml"));
75
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("application/XML"));
76
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("application/x-tra+xML"));
77
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("application/xslt+xml"));
78
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("application/rdf+Xml"));
79
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("image/svg+xml"));
80
EXPECT_TRUE(DOMImplementation::
isXMLMIMEType
("text/xsl"))
[
all
...]
DOMImplementation.h
69
static bool
isXMLMIMEType
(const String&);
DOMImplementation.cpp
233
bool DOMImplementation::
isXMLMIMEType
(const String& mimeType)
382
if (
isXMLMIMEType
(type))
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLViewSourceParser.cpp
41
if (mimeType != "text/html" && !DOMImplementation::
isXMLMIMEType
(mimeType))
TextResourceDecoder.cpp
97
if (DOMImplementation::
isXMLMIMEType
(mimeType))
/external/chromium_org/third_party/WebKit/Source/core/inspector/
NetworkResourcesData.cpp
164
} else if (DOMImplementation::
isXMLMIMEType
(mimeType)) {
InspectorPageAgent.cpp
233
if (DOMImplementation::
isXMLMIMEType
(mimeType)) {
[
all
...]
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
InspectorFileSystemAgent.cpp
290
entryForFrontend->setIsTextFile(DOMImplementation::
isXMLMIMEType
(mimeType) || DOMImplementation::isTextMIMEType(mimeType));
/external/chromium_org/third_party/WebKit/Source/core/xml/
XMLHttpRequest.cpp
[
all
...]
Completed in 1573 milliseconds