Searched defs:text_utf8 (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/components/url_fixer/
H A Durl_fixer.cc40 const std::string& text_utf8,
46 text_utf8.substr(0, component_utf8.begin);
48 text_utf8.substr(component_utf8.begin, component_utf8.len);
57 void UTF8PartsToUTF16Parts(const std::string& text_utf8, argument
60 if (base::IsStringASCII(text_utf8)) {
65 parts->scheme = UTF8ComponentToUTF16Component(text_utf8, parts_utf8.scheme);
67 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.username);
69 UTF8ComponentToUTF16Component(text_utf8, parts_utf8.password);
70 parts->host = UTF8ComponentToUTF16Component(text_utf8, parts_utf8.host);
71 parts->port = UTF8ComponentToUTF16Component(text_utf8, parts_utf
39 UTF8ComponentToUTF16Component( const std::string& text_utf8, const url::Component& component_utf8) argument
507 std::string text_utf8 = base::UTF16ToUTF8(text); local
653 std::string text_utf8 = base::WideToUTF8(text.value()); local
655 std::string text_utf8 = text.value(); local
[all...]
/external/chromium_org/pdf/pdfium/
H A Dpdfium_page.cc145 std::string text_utf8 = base::UTF16ToUTF8(text_utf16); local
175 text_nodes->Append(CreateURLNode(text_utf8, url));
177 text_nodes->Append(CreateURLNode(text_utf8, targets[0].url));
192 std::string lowerCaseText = base::StringToLowerASCII(text_utf8);
208 std::string before_text = text_utf8.substr(start, pos - start);
211 std::string link_text = text_utf8.substr(pos, length);
216 std::string before_text = text_utf8.substr(start);
220 text_nodes->Append(CreateTextNode(text_utf8));

Completed in 193 milliseconds