Home
last modified time | relevance | path

Searched refs:VALID_PHONE_NUMBER_CHARS (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/base/global/i18n/frameworks/intl/src/
H A Dphone_number_format.cpp41 std::map<char, char> PhoneNumberFormat::VALID_PHONE_NUMBER_CHARS {
229 auto iter = VALID_PHONE_NUMBER_CHARS.find(c); in FormatAllInputNumber()
232 } else if (iter != VALID_PHONE_NUMBER_CHARS.end()) { in FormatAllInputNumber()
233 char replacedChar = VALID_PHONE_NUMBER_CHARS[c]; in FormatAllInputNumber()
/ohos5.0/base/global/i18n/frameworks/intl/include/
H A Dphone_number_format.h67 static std::map<char, char> VALID_PHONE_NUMBER_CHARS; variable