Searched refs:operatorName (Results 1 – 3 of 3) sorted by relevance
27 public BrandOverrideEfData(String operatorName, String registeredPlmn) { in BrandOverrideEfData() argument28 mSpn = operatorName; in BrandOverrideEfData()
178 public void updateEfForBrandOverride(String operatorName) { in updateEfForBrandOverride() argument180 if (TextUtils.isEmpty(operatorName)) { in updateEfForBrandOverride()184 new BrandOverrideEfData(operatorName, getServiceState().getOperatorNumeric())); in updateEfForBrandOverride()
5701 public String filterOperatorNameByPattern(String operatorName) { in filterOperatorNameByPattern() argument5702 if (mOperatorNameStringPattern == null || TextUtils.isEmpty(operatorName)) { in filterOperatorNameByPattern()5703 return operatorName; in filterOperatorNameByPattern()5705 Matcher matcher = mOperatorNameStringPattern.matcher(operatorName); in filterOperatorNameByPattern()5708 operatorName = matcher.group(1); in filterOperatorNameByPattern()5713 return operatorName; in filterOperatorNameByPattern()