Home
last modified time | relevance | path

Searched refs:operatorNumeric (Results 1 – 3 of 3) sorted by relevance

/packages/services/Telephony/src/com/android/phone/
DCellInfoUtil.java138 String operatorNumeric = operatorInfo.getOperatorNumeric(); in convertOperatorInfoToCellInfo() local
141 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in convertOperatorInfoToCellInfo()
142 mcc = operatorNumeric.substring(0, 3); in convertOperatorInfoToCellInfo()
143 mnc = operatorNumeric.substring(3); in convertOperatorInfoToCellInfo()
/packages/apps/Settings/src/com/android/settings/network/telephony/
DCellInfoUtil.java112 final String operatorNumeric = operatorInfo.getOperatorNumeric(); in convertOperatorInfoToCellInfo() local
115 if (operatorNumeric != null && operatorNumeric.matches("^[0-9]{5,6}$")) { in convertOperatorInfoToCellInfo()
116 mcc = operatorNumeric.substring(0, 3); in convertOperatorInfoToCellInfo()
117 mnc = operatorNumeric.substring(3); in convertOperatorInfoToCellInfo()
DMobileNetworkUtils.java506 final String operatorNumeric = in isTdscdmaSupported() local
510 if (numericArray == null || operatorNumeric == null) { in isTdscdmaSupported()
514 if (operatorNumeric.equals(numeric)) { in isTdscdmaSupported()