Home | History | Annotate | Download | only in oem

Lines Matching defs:geoDescription

76     public final String geoDescription;
79 private CequintCallerIdContact(String name, String geoDescription, String imageUrl) {
81 this.geoDescription = geoDescription;
185 String geoDescription = getGeoDescription(city, state, stateAbbr, country);
191 LogUtil.sanitizePii(geoDescription),
193 return new CequintCallerIdContact(contactName, geoDescription, imageUrl);
255 String geoDescription = null;
258 geoDescription = state;
260 geoDescription = city + ", " + stateAbbr;
262 geoDescription = country;
264 return geoDescription;