Home
last modified time | relevance | path

Searched refs:encoded_word (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/net/http/
Dhttp_content_disposition.cc79 bool DecodeWord(const std::string& encoded_word, in DecodeWord() argument
86 if (encoded_word.empty()) in DecodeWord()
89 if (!base::IsStringASCII(encoded_word)) { in DecodeWord()
91 if (base::IsStringUTF8(encoded_word)) { in DecodeWord()
92 *output = encoded_word; in DecodeWord()
96 net::ConvertToUTF16(encoded_word, referrer_charset.c_str(), in DecodeWord()
100 *output = base::WideToUTF8(base::SysNativeMBToWide(encoded_word)); in DecodeWord()
117 base::StringTokenizer t(encoded_word, "?"); in DecodeWord()
173 if (*(encoded_word.end() - 1) == '=') { in DecodeWord()
189 decoded_word = net::UnescapeURLComponent(encoded_word, in DecodeWord()
[all …]
/external/chromium_org/chrome/tools/convert_dict/
Dconvert_dict_unittest.cc72 std::string encoded_word; in RunDictionaryTest() local
76 &encoded_word)); in RunDictionaryTest()
77 dic_data += encoded_word; in RunDictionaryTest()