OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsSupportedImageMimeType
(Results
1 - 5
of
5
) sorted by null
/external/chromium_org/content/child/
simple_webmimeregistry_impl.cc
33
return net::
IsSupportedImageMimeType
(ToASCIIOrEmpty(mime_type)) ?
/external/chromium_org/mojo/examples/html_viewer/
webmimeregistry_impl.cc
34
return net::
IsSupportedImageMimeType
(ToASCIIOrEmpty(mime_type)) ?
/external/chromium_org/net/base/
mime_util.h
42
NET_EXPORT bool
IsSupportedImageMimeType
(const std::string& mime_type);
mime_util.cc
62
bool
IsSupportedImageMimeType
(const std::string& mime_type) const;
570
bool MimeUtil::
IsSupportedImageMimeType
(const std::string& mime_type) const {
598
IsSupportedImageMimeType
(mime_type)) ||
795
bool
IsSupportedImageMimeType
(const std::string& mime_type) {
796
return g_mime_util.Get().
IsSupportedImageMimeType
(mime_type);
[
all
...]
mime_util_unittest.cc
71
EXPECT_TRUE(
IsSupportedImageMimeType
("image/jpeg"));
72
EXPECT_FALSE(
IsSupportedImageMimeType
("image/lolcat"));
Completed in 1018 milliseconds