Searched refs:dialStr (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java1923 * The passed-in dialStr should only contain the valid format as described below,
1924 * 1) the 1st character in the dialStr should be one of the really dialable
1927 * 2) the dialStr should already strip out the separator characters,
1928 * every character in the dialStr should be one of the non separator characters
1934 * @param dialStr the original dial string
1943 public static String cdmaCheckAndProcessPlusCode(String dialStr) { argument
1944 if (!TextUtils.isEmpty(dialStr)) {
1945 if (isReallyDialable(dialStr.charAt(0)) &&
1946 isNonSeparator(dialStr)) {
1950 return cdmaCheckAndProcessPlusCodeByNumberFormat(dialStr,
1967 cdmaCheckAndProcessPlusCodeForSms(String dialStr) argument
2008 cdmaCheckAndProcessPlusCodeByNumberFormat(String dialStr,int currFormat,int defaultFormat) argument
2115 isNanp(String dialStr) argument
2140 isOneNanp(String dialStr) argument
2238 appendPwCharBackToOrigDialStr(int dialableIndex,String origStr, String dialStr) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java1334 private static boolean isIs683OtaSpDialStr(String dialStr) { argument
1337 int dialStrLen = dialStr.length();
1340 if (dialStr.equals(IS683A_FEATURE_CODE)) {
1344 sysSelCodeInt = extractSelCodeFromOtaSpNum(dialStr);
1365 private static int extractSelCodeFromOtaSpNum(String dialStr) { argument
1366 int dialStrLen = dialStr.length();
1369 if ((dialStr.regionMatches(0, IS683A_FEATURE_CODE,
1374 // extracted from dialStr will not cause any exception
1376 dialStr.substring (IS683A_FEATURE_CODE_NUM_DIGITS,
1436 private boolean isCarrierOtaSpNum(String dialStr) { argument
1493 isOtaSpNumber(String dialStr) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhone.java1471 * @param dialStr is string representing the dialing digit(s)
1472 * @return true means the dialStr is OTA number, and false means the dialStr is not OTA number
1474 boolean isOtaSpNumber(String dialStr); argument
H A DPhoneProxy.java1051 public boolean isOtaSpNumber(String dialStr){ argument
1052 return mActivePhone.isOtaSpNumber(dialStr);
H A DPhoneBase.java1128 public boolean isOtaSpNumber(String dialStr) { argument

Completed in 151 milliseconds