Home | History | Annotate | Download | only in location

Lines Matching defs:mCountryIso

54     private final String mCountryIso;
86 mCountryIso = countryIso.toUpperCase(Locale.US);
96 mCountryIso = countryIso.toUpperCase(Locale.US);
102 mCountryIso = country.mCountryIso;
111 return mCountryIso;
151 parcel.writeString(mCountryIso);
169 return mCountryIso.equals(c.getCountryIso()) && mSource == c.getSource();
179 hash = hash * 13 + mCountryIso.hashCode();
195 return country != null && mCountryIso.equals(country.getCountryIso());
200 return "Country {ISO=" + mCountryIso + ", source=" + mSource + ", time=" + mTimestamp + "}";