Searched defs:input16 (Results 1 - 7 of 7) sorted by relevance

/external/chromium_org/chrome/common/net/
H A Dx509_certificate_model.cc20 base::string16 input16; local
21 input16.reserve(input.length());
22 input16.insert(input16.end(), input.begin(), input.end());
25 if (input16 == output16)
31 input16, output16);
H A Durl_fixer_upper.cc84 base::string16 input16 = UTF8ToUTF16(input); local
86 TrimPositions result = TrimWhitespace(input16, positions, &output16);
/external/chromium/chrome/common/net/
H A Dx509_certificate_model.cc17 string16 input16; local
18 input16.reserve(input.length());
19 input16.insert(input16.end(), input.begin(), input.end());
25 int output_chars = uidna_IDNToUnicode(input16.data(), input.length(),
34 output_chars = uidna_IDNToUnicode(input16.data(), input.length(),
43 if (input16 == output16)
49 input16, output16);
/external/chromium/googleurl/src/
H A Durl_canon_unittest.cc67 const wchar_t* input16; member in struct:__anon2928::DualComponentCase
77 const wchar_t* input16; member in struct:__anon2928::IPAddressCase
190 const wchar_t* input16; member in struct:UTFCase
229 if (utf_cases[i].input16) {
233 string16 input_str(WStringToUTF16(utf_cases[i].input16));
245 if (utf_cases[i].input8 && utf_cases[i].input16 &&
251 string16 input16_str(WStringToUTF16(utf_cases[i].input16));
468 if (host_cases[i].input16) {
469 string16 input16(WStringToUTF16(host_cases[i].input16));
1073 const wchar_t* input16; member in struct:QueryCase
[all...]
/external/chromium_org/url/
H A Durl_canon_unittest.cc42 const wchar_t* input16; member in struct:__anon15532::DualComponentCase
52 const wchar_t* input16; member in struct:__anon15532::IPAddressCase
177 const wchar_t* input16; member in struct:UTFCase
216 if (utf_cases[i].input16) {
220 base::string16 input_str(WStringToUTF16(utf_cases[i].input16));
232 if (utf_cases[i].input8 && utf_cases[i].input16 &&
238 base::string16 input16_str(WStringToUTF16(utf_cases[i].input16));
588 if (host_cases[i].input16) {
589 base::string16 input16(WStringToUTF16(host_cases[i].input16));
1204 const wchar_t* input16; member in struct:QueryCase
[all...]
/external/chromium/net/base/
H A Dnet_util.cc1286 string16 input16; local
1287 input16.reserve(host_len);
1288 input16.insert(input16.end(), host, host + host_len);
1295 component_start < input16.length();
1298 component_end = input16.find('.', component_start);
1300 component_end = input16.length(); // For getting the last component.
1306 converted_idn = IDNToUnicodeOneComponent(input16.data() + component_start,
1317 if (component_end < input16.length())
/external/chromium_org/net/base/
H A Dnet_util.cc509 base::string16 input16; local
510 input16.reserve(host.length());
511 input16.insert(input16.end(), host.begin(), host.end());
519 component_start < input16.length();
522 component_end = input16.find('.', component_start);
524 component_end = input16.length(); // For getting the last component.
531 input16.data() + component_start, component_length, languages,
542 if (component_end < input16.length())

Completed in 376 milliseconds