Home
last modified time | relevance | path

Searched refs:had_charset (Results 1 – 4 of 4) sorted by relevance

/external/cronet/net/http/
Dhttp_util_unittest.cc1031 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 …]
Dhttp_util.cc98 bool* had_charset, in ParseContentType() argument
138 if ((!eq && *had_charset) || type_has_charset) { in ParseContentType()
139 *had_charset = true; in ParseContentType()
Dhttp_util.h59 bool* had_charset,
Dhttp_response_headers.cc919 bool had_charset = false; in GetMimeTypeAndCharset() local
923 HttpUtil::ParseContentType(value, mime_type, charset, &had_charset, in GetMimeTypeAndCharset()