OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhoneObject
(Results
1 - 9
of
9
) sorted by null
/external/chromium_org/components/autofill/core/browser/
phone_number_i18n.h
72
class
PhoneObject
{
74
PhoneObject
(const base::string16& number,
76
PhoneObject
(const
PhoneObject
&);
77
PhoneObject
();
78
~
PhoneObject
();
90
PhoneObject
& operator=(const
PhoneObject
& other);
phone_number_i18n.cc
238
PhoneObject
::
PhoneObject
(const base::string16& number,
260
PhoneObject
::
PhoneObject
(const
PhoneObject
& other) { *this = other; }
262
PhoneObject
::
PhoneObject
() {}
264
PhoneObject
::~
PhoneObject
() {}
266
const base::string16&
PhoneObject
::GetFormattedNumber() const
[
all
...]
phone_number.h
94
mutable i18n::
PhoneObject
cached_parsed_phone_;
phone_number.cc
87
cached_parsed_phone_ = i18n::
PhoneObject
();
181
cached_parsed_phone_ = i18n::
PhoneObject
(number_, region);
autofill_profile.cc
463
return !i18n::
PhoneObject
(data, country).IsValidNumber();
[
all
...]
/external/chromium_org/components/autofill/content/browser/wallet/
wallet_address.cc
138
phone_object_ = i18n::
PhoneObject
(phone_number_, country_name_code_);
324
//
PhoneObject
to format it would result in an internationalized format. Since
326
return i18n::
PhoneObject
(phone_number(), country_name_code()).
387
phone_object_ = i18n::
PhoneObject
(phone_number_, country_name_code_);
wallet_address.h
212
i18n::
PhoneObject
phone_object_;
/external/chromium_org/chrome/browser/ui/autofill/
data_model_wrapper.cc
146
i18n::
PhoneObject
phone(phone_number, region);
autofill_dialog_controller_impl.cc
538
i18n::
PhoneObject
phone_object(number, region);
[
all
...]
Completed in 244 milliseconds