Searched refs:operatorName (Results 1 – 3 of 3) sorted by relevance
29 public BrandOverrideEfData(String operatorName, String registeredPlmn) { in BrandOverrideEfData() argument30 mSpn = operatorName; in BrandOverrideEfData()
182 public void updateEfForBrandOverride(String operatorName) { in updateEfForBrandOverride() argument184 if (TextUtils.isEmpty(operatorName)) { in updateEfForBrandOverride()188 new BrandOverrideEfData(operatorName, getServiceState().getOperatorNumeric())); in updateEfForBrandOverride()
6123 public String filterOperatorNameByPattern(String operatorName) { in filterOperatorNameByPattern() argument6124 if (mOperatorNameStringPattern == null || TextUtils.isEmpty(operatorName)) { in filterOperatorNameByPattern()6125 return operatorName; in filterOperatorNameByPattern()6127 Matcher matcher = mOperatorNameStringPattern.matcher(operatorName); in filterOperatorNameByPattern()6130 operatorName = matcher.group(1); in filterOperatorNameByPattern()6135 return operatorName; in filterOperatorNameByPattern()