Searched refs:had_charset (Results 1 – 4 of 4) sorted by relevance
/external/cronet/net/http/ |
D | http_util_unittest.cc | 1031 bool had_charset = false; in TEST() local 1034 &had_charset, &boundary); in TEST() 1039 EXPECT_EQ(test.expected_had_charset, had_charset) in TEST() 1049 bool had_charset = false; in TEST() local 1053 HttpUtil::ParseContentType("Text/Html", &mime_type, &charset, &had_charset, in TEST() 1057 EXPECT_FALSE(had_charset); in TEST() 1061 &had_charset, &boundary); in TEST() 1064 EXPECT_TRUE(had_charset); in TEST() 1068 HttpUtil::ParseContentType("teXt/htMl", &mime_type, &charset, &had_charset, in TEST() 1072 EXPECT_TRUE(had_charset); in TEST() [all …]
|
D | http_util.cc | 98 bool* had_charset, in ParseContentType() argument 138 if ((!eq && *had_charset) || type_has_charset) { in ParseContentType() 139 *had_charset = true; in ParseContentType()
|
D | http_util.h | 59 bool* had_charset,
|
D | http_response_headers.cc | 919 bool had_charset = false; in GetMimeTypeAndCharset() local 923 HttpUtil::ParseContentType(value, mime_type, charset, &had_charset, in GetMimeTypeAndCharset()
|