OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PhoneNumberType
(Results
1 - 3
of
3
) 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
283
PhoneNumberUtil.
PhoneNumberType
.FIXED_LINE));
286
PhoneNumberUtil.
PhoneNumberType
.MOBILE));
290
PhoneNumberUtil.
PhoneNumberType
.FIXED_LINE));
292
PhoneNumberUtil.
PhoneNumberType
.MOBILE));
295
PhoneNumberUtil.
PhoneNumberType
.MOBILE));
[
all
...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java
350
public enum
PhoneNumberType
{
[
all
...]
Completed in 64 milliseconds