Home
last modified time | relevance | path

Searched refs:IsSupportedImageMimeType (Results 1 – 9 of 9) sorted by relevance

/external/chromium/net/base/
Dmime_util_unittest.cc62 EXPECT_TRUE(IsSupportedImageMimeType("image/jpeg")); in TEST()
63 EXPECT_FALSE(IsSupportedImageMimeType("image/lolcat")); in TEST()
Dmime_util.cc31 bool IsSupportedImageMimeType(const char* mime_type) const;
358 bool MimeUtil::IsSupportedImageMimeType(const char* mime_type) const { in IsSupportedImageMimeType() function in net::MimeUtil
381 IsSupportedImageMimeType(mime_type.c_str())) || in IsSupportedMimeType()
493 bool IsSupportedImageMimeType(const char* mime_type) { in IsSupportedImageMimeType() function
494 return g_mime_util.Get().IsSupportedImageMimeType(mime_type); in IsSupportedImageMimeType()
Dmime_util.h33 bool IsSupportedImageMimeType(const char* mime_type);
/external/chromium_org/net/base/
Dmime_util.cc61 bool IsSupportedImageMimeType(const std::string& mime_type) const;
510 bool MimeUtil::IsSupportedImageMimeType(const std::string& mime_type) const { in IsSupportedImageMimeType() function in net::MimeUtil
536 IsSupportedImageMimeType(mime_type)) || in IsSupportedMimeType()
735 bool IsSupportedImageMimeType(const std::string& mime_type) { in IsSupportedImageMimeType() function
736 return g_mime_util.Get().IsSupportedImageMimeType(mime_type); in IsSupportedImageMimeType()
Dmime_util_unittest.cc67 EXPECT_TRUE(IsSupportedImageMimeType("image/jpeg")); in TEST()
68 EXPECT_FALSE(IsSupportedImageMimeType("image/lolcat")); in TEST()
Dmime_util.h42 NET_EXPORT bool IsSupportedImageMimeType(const std::string& mime_type);
/external/chromium_org/webkit/glue/
Dsimple_webmimeregistry_impl.cc32 return net::IsSupportedImageMimeType(ToASCIIOrEmpty(mime_type)) ? in supportsImageMIMEType()
/external/chromium/webkit/glue/
Dsimple_webmimeregistry_impl.cc40 if (!net::IsSupportedImageMimeType(ToASCIIOrEmpty(mime_type).c_str())) in supportsImageMIMEType()
/external/chromium_org/chrome/browser/predictors/
Dresource_prefetch_predictor.cc196 !net::IsSupportedImageMimeType(mime_type.c_str()) && in IsHandledSubresource()
244 if (net::IsSupportedImageMimeType(mime_type.c_str())) in GetResourceTypeFromMimeType()