Home | History | Annotate | Download | only in telephony

Lines Matching defs:countryCode

109         public int countryCode;
200 int countryCode = numberEntry.countryCode;
203 && networkPortionNumber.length() >= 11 && countryCode != NANP_CC) {
380 int countryCode = -1;
388 if ((countryCode = getCountryCode(context, numberCountryAreaLocal)) > 0) {
389 numberEntry.countryCode = countryCode;
392 } else if ((countryCode = getCountryCode(context, numberNoNBPCD)) > 0) {
393 numberEntry.countryCode = countryCode;
400 if ((countryCode = getCountryCode(context, numberCountryAreaLocal)) > 0) {
401 numberEntry.countryCodecountryCode;
408 if ((countryCode = getCountryCode(context, numberNoIDD)) > 0) {
409 numberEntry.countryCode = countryCode;
416 if (!number.startsWith("0") && (countryCode = getCountryCode(context, number)) > 0) {
417 numberEntry.countryCode = countryCode;
428 int countryCode = -1;
433 return countryCode;
452 return countryCode;
473 int countryCode = cursor.getInt(0);
474 ALL_COUNTRY_CODES[i++] = countryCode;
475 int length = String.valueOf(countryCode).trim().length();
492 int countryCode = numberEntry.countryCode;
494 && (countryCode == 7 || countryCode == 20
495 || countryCode == 65 || countryCode == 90));