Home
last modified time | relevance | path

Searched refs:phoneString (Results 1 – 6 of 6) sorted by relevance

/base/telephony/cellular_call/services/common/src/
Dstandardize_utils.cpp21 std::string StandardizeUtils::RemoveSeparatorsPhoneNumber(const std::string &phoneString) in RemoveSeparatorsPhoneNumber() argument
25 if (phoneString.empty()) { in RemoveSeparatorsPhoneNumber()
30 for (char c : phoneString) { in RemoveSeparatorsPhoneNumber()
39 void StandardizeUtils::ExtractAddressAndPostDial(const std::string &phoneString, std::string &netwo… in ExtractAddressAndPostDial() argument
42 if (phoneString.empty()) { in ExtractAddressAndPostDial()
47 int32_t postDialIndex = phoneString.length(); in ExtractAddressAndPostDial()
48 for (int32_t i = 0; i < phoneString.length(); i++) { in ExtractAddressAndPostDial()
49 char c = phoneString.at(i); in ExtractAddressAndPostDial()
58 for (int32_t i = postDialIndex; i < phoneString.length(); i++) { in ExtractAddressAndPostDial()
59 char c = phoneString.at(i); in ExtractAddressAndPostDial()
/base/telephony/call_manager/utils/src/
Dcall_number_utils.cpp141 std::string CallNumberUtils::RemoveSeparatorsPhoneNumber(const std::string &phoneString) in RemoveSeparatorsPhoneNumber() argument
144 if (phoneString.empty()) { in RemoveSeparatorsPhoneNumber()
148 for (char c : phoneString) { in RemoveSeparatorsPhoneNumber()
157 std::string CallNumberUtils::RemovePostDailPhoneNumber(const std::string &phoneString) in RemovePostDailPhoneNumber() argument
160 if (phoneString.empty()) { in RemovePostDailPhoneNumber()
164 for (char c : phoneString) { in RemovePostDailPhoneNumber()
/base/telephony/cellular_call/services/control/src/
Dcontrol_base.cpp53 bool ControlBase::IsNeedExecuteMMI(int32_t slotId, std::string &phoneString, CLIRMode &clirMode, bo… in IsNeedExecuteMMI() argument
66 if (!mmiCodeUtils->IsNeedExecuteMmi(phoneString, isNeedUseIms)) { in IsNeedExecuteMMI()
73 phoneString = mmiCodeUtils->GetMMIData().dialString; in IsNeedExecuteMMI()
77 phoneString = mmiCodeUtils->GetMMIData().dialString; in IsNeedExecuteMMI()
/base/telephony/call_manager/utils/include/
Dcall_number_utils.h40 std::string RemoveSeparatorsPhoneNumber(const std::string &phoneString);
41 std::string RemovePostDailPhoneNumber(const std::string &phoneString);
/base/telephony/cellular_call/services/common/include/
Dstandardize_utils.h45 …void ExtractAddressAndPostDial(const std::string &phoneString, std::string &networkAddress, std::s…
/base/telephony/cellular_call/services/control/include/
Dcontrol_base.h182 …bool IsNeedExecuteMMI(int32_t slotId, std::string &phoneString, CLIRMode &clirMode, bool isNeedUse…