Lines Matching refs:ValidationResult

34 goog.provide('i18n.phonenumbers.PhoneNumberUtil.ValidationResult');
1111 i18n.phonenumbers.PhoneNumberUtil.ValidationResult = {
2086 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.TOO_SHORT) {
3420 /** @type {!i18n.phonenumbers.PhoneNumberUtil.ValidationResult} */
3423 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE ||
3425 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE_LOCAL_ONLY;
3446 /** @type {!i18n.phonenumbers.PhoneNumberUtil.ValidationResult} */
3449 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE ||
3451 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE_LOCAL_ONLY;
3462 * @return {i18n.phonenumbers.PhoneNumberUtil.ValidationResult}
3479 * @return {i18n.phonenumbers.PhoneNumberUtil.ValidationResult}
3542 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult.INVALID_LENGTH;
3549 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult
3554 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE;
3556 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult.TOO_SHORT;
3558 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult.TOO_LONG;
3562 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.IS_POSSIBLE :
3563 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.INVALID_LENGTH;
3589 * @return {i18n.phonenumbers.PhoneNumberUtil.ValidationResult} a
3590 * ValidationResult object which indicates whether the number is possible
3619 * @return {i18n.phonenumbers.PhoneNumberUtil.ValidationResult} a
3620 * ValidationResult object which indicates whether the number is possible
3638 return i18n.phonenumbers.PhoneNumberUtil.ValidationResult
3709 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.TOO_SHORT) {
3870 i18n.phonenumbers.PhoneNumberUtil.ValidationResult.TOO_LONG) {
4357 var validationResults = i18n.phonenumbers.PhoneNumberUtil.ValidationResult;