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

/frameworks/base/telephony/java/android/telephony/
H A DPhoneNumberUtils.java2373 * The passed-in dialStr should only contain the valid format as described below,
2374 * 1) the 1st character in the dialStr should be one of the really dialable
2377 * 2) the dialStr should already strip out the separator characters,
2378 * every character in the dialStr should be one of the non separator characters
2384 * @param dialStr the original dial string
2393 public static String cdmaCheckAndProcessPlusCode(String dialStr) { argument
2394 if (!TextUtils.isEmpty(dialStr)) {
2395 if (isReallyDialable(dialStr.charAt(0)) &&
2396 isNonSeparator(dialStr)) {
2400 return cdmaCheckAndProcessPlusCodeByNumberFormat(dialStr,
2417 cdmaCheckAndProcessPlusCodeForSms(String dialStr) argument
2458 cdmaCheckAndProcessPlusCodeByNumberFormat(String dialStr,int currFormat,int defaultFormat) argument
2683 isNanp(String dialStr) argument
2708 isOneNanp(String dialStr) argument
2849 appendPwCharBackToOrigDialStr(int dialableIndex,String origStr, String dialStr) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DGsmCdmaPhone.java3055 private static boolean isIs683OtaSpDialStr(String dialStr) { argument
3058 int dialStrLen = dialStr.length();
3061 if (dialStr.equals(IS683A_FEATURE_CODE)) {
3065 sysSelCodeInt = extractSelCodeFromOtaSpNum(dialStr);
3088 private static int extractSelCodeFromOtaSpNum(String dialStr) { argument
3089 int dialStrLen = dialStr.length();
3092 if ((dialStr.regionMatches(0, IS683A_FEATURE_CODE,
3097 // extracted from dialStr will not cause any exception
3099 dialStr.substring (IS683A_FEATURE_CODE_NUM_DIGITS,
3156 private boolean isCarrierOtaSpNum(String dialStr) { argument
3213 isOtaSpNumber(String dialStr) argument
[all...]
H A DPhone.java2524 * @param dialStr is string representing the dialing digit(s)
2525 * @return true means the dialStr is OTA number, and false means the dialStr is not OTA number
2527 public boolean isOtaSpNumber(String dialStr) { argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java693 public boolean isOtaSpNumber(String dialStr) { argument

Completed in 302 milliseconds