HomeSort by relevance Sort by last modified time
    Searched refs:PhoneNumberType (Results 1 - 9 of 9) sorted by null

  /external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
ExampleNumbersTest.java 19 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
50 private void checkNumbersValidAndCorrectType(PhoneNumberType exampleNumberRequestedType,
51 Set<PhoneNumberType> possibleExpectedTypes) {
61 PhoneNumberType exampleNumberType = phoneNumberUtil.getNumberType(exampleNumber);
68 for (PhoneNumberType type : possibleExpectedTypes) {
78 Set<PhoneNumberType> fixedLineTypes = EnumSet.of(PhoneNumberType.FIXED_LINE,
79 PhoneNumberType.FIXED_LINE_OR_MOBILE);
80 checkNumbersValidAndCorrectType(PhoneNumberType.FIXED_LINE, fixedLineTypes);
86 Set<PhoneNumberType> mobileTypes = EnumSet.of(PhoneNumberType.MOBILE
    [all...]
PhoneNumberUtilTest.java 20 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
152 .contains(PhoneNumberType.FIXED_LINE));
155 .contains(PhoneNumberType.MOBILE));
158 .contains(PhoneNumberType.UNKNOWN));
162 .contains(PhoneNumberType.FIXED_LINE));
164 .contains(PhoneNumberType.MOBILE));
166 .contains(PhoneNumberType.FIXED_LINE_OR_MOBILE));
176 Set<PhoneNumberType> typesFor979 = phoneUtil.getSupportedTypesForNonGeoEntity(979);
177 assertTrue(typesFor979.contains(PhoneNumberType.PREMIUM_RATE));
178 assertFalse(typesFor979.contains(PhoneNumberType.MOBILE))
    [all...]
  /external/libphonenumber/carrier/src/com/google/i18n/phonenumbers/
PhoneNumberToCarrierMapper.java 20 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
92 PhoneNumberType numberType = phoneUtil.getNumberType(number);
119 private boolean isMobile(PhoneNumberType numberType) {
120 return (numberType == PhoneNumberType.MOBILE
121 || numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE
122 || numberType == PhoneNumberType.PAGER);
  /external/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java 21 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
189 PhoneNumberType numberType = phoneUtil.getNumberType(number);
190 if (numberType == PhoneNumberType.UNKNOWN) {
212 PhoneNumberType numberType = phoneUtil.getNumberType(number);
213 if (numberType == PhoneNumberType.UNKNOWN) {
  /external/libphonenumber/geocoder/src/com/google/i18n/phonenumbers/
PhoneNumberToTimeZonesMapper.java 19 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
137 PhoneNumberType numberType = PhoneNumberUtil.getInstance().getNumberType(number);
138 if (numberType == PhoneNumberType.UNKNOWN) {
  /external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
PhoneNumberUtil.java 404 public enum PhoneNumberType {
    [all...]
  /external/libphonenumber/demo/src/com/google/phonenumbers/
PhoneNumberParserServlet.java 30 import com.google.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
292 PhoneNumberType numberType = phoneUtil.getNumberType(number);
408 if (numberType == PhoneNumberType.MOBILE ||
409 numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE ||
410 numberType == PhoneNumberType.PAGER) {
  /frameworks/base/config/
preloaded-classes     [all...]
  /prebuilts/misc/common/robolectric/android-all/
android-all-o-preview-4-robolectric-0.jar 

Completed in 760 milliseconds