OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:utf8_input
(Results
1 - 8
of
8
) sorted by null
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter_re2.cc
38
explicit RE2RegExpInput(const string&
utf8_input
)
39
: string_(
utf8_input
),
107
StringPiece*
utf8_input
=
local
111
return DispatchRE2Call(RE2::Consume,
utf8_input
, utf8_regexp_,
115
return DispatchRE2Call(RE2::FindAndConsume,
utf8_input
, utf8_regexp_,
152
RegExpInput* RE2RegExpFactory::CreateInput(const string&
utf8_input
) const {
153
return new RE2RegExpInput(
utf8_input
);
regexp_adapter_icu.cc
69
explicit IcuRegExpInput(const string&
utf8_input
)
70
: utf8_input_(Utf8StringToUnicodeString(
utf8_input
)),
228
RegExpInput* ICURegExpFactory::CreateInput(const string&
utf8_input
) const {
229
return new IcuRegExpInput(
utf8_input
);
regexp_adapter_icu.h
34
virtual RegExpInput* CreateInput(const string&
utf8_input
) const;
regexp_adapter_re2.h
33
virtual RegExpInput* CreateInput(const string&
utf8_input
) const;
regexp_adapter.h
158
virtual RegExpInput* CreateInput(const string&
utf8_input
) const = 0;
/external/chromium_org/content/renderer/android/
phone_number_detector.cc
64
std::string
utf8_input
= UTF16ToUTF8(utf16_input);
local
66
PhoneNumberMatcher matcher(
utf8_input
, region_code_);
81
*start_pos = UTF8ToUTF16(
utf8_input
.substr(0, match.start())).length();
/external/chromium_org/chrome/browser/autocomplete/
autocomplete_input.cc
505
std::string
utf8_input
(UTF16ToUTF8(input));
507
if (url_util::FindAndCompareScheme(
utf8_input
, content::kViewSourceScheme,
509
utf8_input
.erase(0, scheme.end() + 1);
510
return url_util::FindAndCompareScheme(
utf8_input
, content::kHttpScheme, NULL);
/external/chromium/chrome/browser/autocomplete/
autocomplete.cc
517
std::string
utf8_input
(UTF16ToUTF8(input));
519
if (url_util::FindAndCompareScheme(
utf8_input
, chrome::kViewSourceScheme,
521
utf8_input
.erase(0, scheme.end() + 1);
522
return url_util::FindAndCompareScheme(
utf8_input
, chrome::kHttpScheme, NULL);
[
all
...]
Completed in 825 milliseconds