Lines Matching refs:postDialStr
1793 String postDialStr = null;
1822 postDialStr = extractPostDialPortion(tempDialStr);
1823 if (!TextUtils.isEmpty(postDialStr)) {
1824 int dialableIndex = findDialableIndexFromPostDialStr(postDialStr);
1829 retStr,postDialStr);
1831 tempDialStr = postDialStr.substring(dialableIndex);
1835 // Set the postDialStr to "" to break out of the loop
1837 postDialStr = "";
1839 Log.e("wrong postDialStr=", postDialStr);
1842 postDialStr=" + postDialStr);
1843 } while (!TextUtils.isEmpty(postDialStr) && !TextUtils.isEmpty(tempDialStr));
1975 private static int findDialableIndexFromPostDialStr(String postDialStr) {
1976 for (int index = 0;index < postDialStr.length();index++) {
1977 char c = postDialStr.charAt(index);