Lines Matching refs:postDialStr
2468 String postDialStr = null; in cdmaCheckAndProcessPlusCodeByNumberFormat() local
2504 postDialStr = extractPostDialPortion(tempDialStr); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2505 if (!TextUtils.isEmpty(postDialStr)) { in cdmaCheckAndProcessPlusCodeByNumberFormat()
2506 int dialableIndex = findDialableIndexFromPostDialStr(postDialStr); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2511 retStr,postDialStr); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2513 tempDialStr = postDialStr.substring(dialableIndex); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2519 postDialStr = ""; in cdmaCheckAndProcessPlusCodeByNumberFormat()
2521 Rlog.e("wrong postDialStr=", postDialStr); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2524 if (DBG) log("checkAndProcessPlusCode,postDialStr=" + postDialStr); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2525 } while (!TextUtils.isEmpty(postDialStr) && !TextUtils.isEmpty(tempDialStr)); in cdmaCheckAndProcessPlusCodeByNumberFormat()
2836 private static int findDialableIndexFromPostDialStr(String postDialStr) { in findDialableIndexFromPostDialStr() argument
2837 for (int index = 0;index < postDialStr.length();index++) { in findDialableIndexFromPostDialStr()
2838 char c = postDialStr.charAt(index); in findDialableIndexFromPostDialStr()