Home | History | Annotate | Download | only in net

Lines Matching refs:text_utf8

34     const std::string& text_utf8,
40 text_utf8.substr(0, component_utf8.begin);
41 std::string component_string = text_utf8.substr(component_utf8.begin,
50 void UTF8PartsToUTF16Parts(const std::string& text_utf8,
53 if (IsStringASCII(text_utf8)) {
59 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme);
61 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.username);
63 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.password);
65 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.host);
67 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.port);
69 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.path);
71 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.query);
73 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.ref);
568 std::string text_utf8 = WideToUTF8(text.value());
570 std::string text_utf8 = text.value();
572 return FixupURL(text_utf8, std::string());
577 std::string text_utf8 = UTF16ToUTF8(text);
579 std::string scheme_utf8 = SegmentURL(text_utf8, &parts_utf8);
580 UTF8PartsToUTF16Parts(text_utf8, parts_utf8, parts);