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

/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java2130 * The passed-in dialStr should only contain the valid format as described below,
2131 * 1) the 1st character in the dialStr should be one of the really dialable
2134 * 2) the dialStr should already strip out the separator characters,
2135 * every character in the dialStr should be one of the non separator characters
2141 * @param dialStr the original dial string
2150 public static String cdmaCheckAndProcessPlusCode(String dialStr) { argument
2151 if (!TextUtils.isEmpty(dialStr)) {
2152 if (isReallyDialable(dialStr.charAt(0)) &&
2153 isNonSeparator(dialStr)) {
2157 return cdmaCheckAndProcessPlusCodeByNumberFormat(dialStr,
2174 cdmaCheckAndProcessPlusCodeForSms(String dialStr) argument
2215 cdmaCheckAndProcessPlusCodeByNumberFormat(String dialStr,int currFormat,int defaultFormat) argument
2321 isNanp(String dialStr) argument
2346 isOneNanp(String dialStr) argument
2445 appendPwCharBackToOrigDialStr(int dialableIndex,String origStr, String dialStr) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
H A DCDMAPhone.java1462 private static boolean isIs683OtaSpDialStr(String dialStr) { argument
1465 int dialStrLen = dialStr.length();
1468 if (dialStr.equals(IS683A_FEATURE_CODE)) {
1472 sysSelCodeInt = extractSelCodeFromOtaSpNum(dialStr);
1493 private static int extractSelCodeFromOtaSpNum(String dialStr) { argument
1494 int dialStrLen = dialStr.length();
1497 if ((dialStr.regionMatches(0, IS683A_FEATURE_CODE,
1502 // extracted from dialStr will not cause any exception
1504 dialStr.substring (IS683A_FEATURE_CODE_NUM_DIGITS,
1564 private boolean isCarrierOtaSpNum(String dialStr) { argument
1621 isOtaSpNumber(String dialStr) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DPhoneBase.java1480 public boolean isOtaSpNumber(String dialStr) { argument
H A DPhoneProxy.java1109 public boolean isOtaSpNumber(String dialStr){ argument
1110 return mActivePhone.isOtaSpNumber(dialStr);
H A DPhone.java1500 * @param dialStr is string representing the dialing digit(s)
1501 * @return true means the dialStr is OTA number, and false means the dialStr is not OTA number
1503 boolean isOtaSpNumber(String dialStr); argument

Completed in 1338 milliseconds