/external/chromium/chrome/browser/net/ |
url_fixer_upper.cc | 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) 568 std::string text_utf8 = WideToUTF8(text.value()); local 570 std::string text_utf8 = text.value(); local 577 std::string text_utf8 = UTF16ToUTF8(text); local [all...] |
/external/chromium_org/chrome/common/net/ |
url_fixer_upper.cc | 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, 51 void UTF8PartsToUTF16Parts(const std::string& text_utf8, 54 if (IsStringASCII(text_utf8)) { 60 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme); 62 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.username); 64 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.password); 66 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.host); 68 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.port) 489 std::string text_utf8 = UTF16ToUTF8(text); local 628 std::string text_utf8 = WideToUTF8(text.value()); local 630 std::string text_utf8 = text.value(); local [all...] |
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_view_gtk.cc | 206 // UTF-16 offsets in the classification into text_utf8 byte offsets. 208 std::string text_utf8 = prefix_text + UTF16ToUTF8(localized_text); local 243 text_utf8.insert(offset, lre); 264 pango_layout_set_text(layout, text_utf8.data(), text_utf8.size());
|
/external/chromium_org/chrome/browser/ui/gtk/omnibox/ |
omnibox_popup_view_gtk.cc | 396 // UTF-16 offsets in the classification into text_utf8 byte offsets. 398 std::string text_utf8 = prefix_text + UTF16ToUTF8(localized_text); local 433 text_utf8.insert(offset, lre); 454 pango_layout_set_text(layout, text_utf8.data(), text_utf8.length());
|
/external/chromium_org/chrome/browser/ui/gtk/ |
gtk_util.cc | 716 std::string text_utf8 = UTF16ToUTF8(text); local 717 if (text_utf8.length() > 2000) 718 text_utf8 = text_utf8.substr(0, 2000); 720 pango_layout_set_text(layout, text_utf8.data(), text_utf8.length()); [all...] |