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

  /external/libphonenumber/java/test/com/android/i18n/phonenumbers/
ExampleNumbersTest.java 19 import com.android.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
66 private void checkNumbersValidAndCorrectType(PhoneNumberType exampleNumberRequestedType,
67 Set<PhoneNumberType> possibleExpectedTypes) {
77 PhoneNumberType exampleNumberType = phoneNumberUtil.getNumberType(exampleNumber);
84 for (PhoneNumberType type : possibleExpectedTypes) {
94 Set<PhoneNumberType> fixedLineTypes = EnumSet.of(PhoneNumberType.FIXED_LINE,
95 PhoneNumberType.FIXED_LINE_OR_MOBILE);
96 checkNumbersValidAndCorrectType(PhoneNumberType.FIXED_LINE, fixedLineTypes);
102 Set<PhoneNumberType> mobileTypes = EnumSet.of(PhoneNumberType.MOBILE
    [all...]
PhoneNumberUtilTest.java 312 PhoneNumberUtil.PhoneNumberType.FIXED_LINE));
315 PhoneNumberUtil.PhoneNumberType.MOBILE));
319 PhoneNumberUtil.PhoneNumberType.FIXED_LINE));
321 PhoneNumberUtil.PhoneNumberType.MOBILE));
324 PhoneNumberUtil.PhoneNumberType.MOBILE));
    [all...]
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java 20 import com.android.i18n.phonenumbers.PhoneNumberUtil.PhoneNumberType;
217 PhoneNumberType numberType = phoneUtil.getNumberType(number);
218 if (numberType == PhoneNumberType.UNKNOWN) {
240 PhoneNumberType numberType = phoneUtil.getNumberType(number);
241 if (numberType == PhoneNumberType.UNKNOWN) {
254 private boolean canBeGeocoded(PhoneNumberType numberType) {
255 return (numberType == PhoneNumberType.FIXED_LINE ||
256 numberType == PhoneNumberType.MOBILE ||
257 numberType == PhoneNumberType.FIXED_LINE_OR_MOBILE);
  /external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java 401 public enum PhoneNumberType {
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
phonenumberutil.h 95 enum PhoneNumberType {
374 PhoneNumberType GetNumberType(const PhoneNumber& number) const;
482 PhoneNumberType type,
    [all...]
phonenumberutil.cc 131 PhoneNumberUtil::PhoneNumberType type) {
206 PhoneNumberUtil::PhoneNumberType GetNumberTypeHelper(
    [all...]

Completed in 585 milliseconds