OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:text_utf8
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/components/url_fixer/
url_fixer.cc
39
const std::string&
text_utf8
,
45
text_utf8
.substr(0, component_utf8.begin);
47
text_utf8
.substr(component_utf8.begin, component_utf8.len);
56
void UTF8PartsToUTF16Parts(const std::string&
text_utf8
,
59
if (base::IsStringASCII(
text_utf8
)) {
64
parts->scheme = UTF8ComponentToUTF16Component(
text_utf8
, parts_utf8.scheme);
66
UTF8ComponentToUTF16Component(
text_utf8
, parts_utf8.username);
68
UTF8ComponentToUTF16Component(
text_utf8
, parts_utf8.password);
69
parts->host = UTF8ComponentToUTF16Component(
text_utf8
, parts_utf8.host);
70
parts->port = UTF8ComponentToUTF16Component(
text_utf8
, parts_utf8.port)
498
std::string
text_utf8
= base::UTF16ToUTF8(text);
local
644
std::string
text_utf8
= base::WideToUTF8(text.value());
local
646
std::string
text_utf8
= text.value();
local
[
all
...]
/external/chromium_org/pdf/pdfium/
pdfium_page.cc
146
std::string
text_utf8
= base::UTF16ToUTF8(text_utf16);
local
176
text_nodes->Append(CreateURLNode(
text_utf8
, url));
178
text_nodes->Append(CreateURLNode(
text_utf8
, targets[0].url));
193
std::string lowerCaseText = StringToLowerASCII(
text_utf8
);
209
std::string before_text =
text_utf8
.substr(start, pos - start);
212
std::string link_text =
text_utf8
.substr(pos, length);
217
std::string before_text =
text_utf8
.substr(start);
221
text_nodes->Append(CreateTextNode(
text_utf8
));
Completed in 702 milliseconds