Lines Matching refs:first_number
191 bool IsNationalNumberSuffixOfTheOther(const PhoneNumber& first_number, in IsNationalNumberSuffixOfTheOther() argument
194 SimpleItoa(static_cast<uint64>(first_number.national_number())); in IsNationalNumberSuffixOfTheOther()
3060 PhoneNumber first_number; in IsNumberMatch() local
3061 CopyCoreFieldsOnly(first_number_in, &first_number); in IsNumberMatch()
3065 if (first_number.has_extension() && second_number.has_extension() && in IsNumberMatch()
3066 first_number.extension() != second_number.extension()) { in IsNumberMatch()
3069 int first_number_country_code = first_number.country_code(); in IsNumberMatch()
3073 if (ExactlySameAs(first_number, second_number)) { in IsNumberMatch()
3076 IsNationalNumberSuffixOfTheOther(first_number, second_number)) { in IsNumberMatch()
3089 first_number.set_country_code(second_number_country_code); in IsNumberMatch()
3091 if (ExactlySameAs(first_number, second_number)) { in IsNumberMatch()
3094 if (IsNationalNumberSuffixOfTheOther(first_number, second_number)) { in IsNumberMatch()
3101 const string& first_number, in IsNumberMatchWithTwoStrings() argument
3105 Parse(first_number, RegionCode::GetUnknown(), &first_number_as_proto); in IsNumberMatchWithTwoStrings()
3114 return IsNumberMatchWithOneString(second_number_as_proto, first_number); in IsNumberMatchWithTwoStrings()
3117 error_type = ParseHelper(first_number, RegionCode::GetUnknown(), false, in IsNumberMatchWithTwoStrings()
3134 const PhoneNumber& first_number, in IsNumberMatchWithOneString() argument
3142 return IsNumberMatch(first_number, second_number_as_proto); in IsNumberMatchWithOneString()
3150 GetRegionCodeForCountryCode(first_number.country_code(), in IsNumberMatchWithOneString()
3156 MatchType match = IsNumberMatch(first_number, in IsNumberMatchWithOneString()
3168 return IsNumberMatch(first_number, second_number_as_proto); in IsNumberMatchWithOneString()