OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:MOBILE
(Results
1 - 10
of
10
) sorted by null
/external/protobuf/examples/
add_person.py
25
type = raw_input("Is this a
mobile
, home, or work phone? ")
26
if type == "
mobile
":
27
phone_number.type = addressbook_pb2.Person.
MOBILE
list_people.py
17
if phone_number.type == addressbook_pb2.Person.
MOBILE
:
18
print "
Mobile
phone #:",
ListPeople.java
21
case
MOBILE
:
22
System.out.print("
Mobile
phone #: ");
add_person.cc
38
cout << "Is this a
mobile
, home, or work phone? ";
41
if (type == "
mobile
") {
42
phone_number->set_type(tutorial::Person::
MOBILE
);
list_people.cc
24
case tutorial::Person::
MOBILE
:
25
cout << "
Mobile
phone #: ";
AddPerson.java
41
stdout.print("Is this a
mobile
, home, or work phone? ");
43
if (type.equals("
mobile
")) {
44
phoneNumber.setType(Person.PhoneType.
MOBILE
);
/external/libphonenumber/java/test/com/android/i18n/phonenumbers/
ExampleNumbersTest.java
102
Set<PhoneNumberType> mobileTypes = EnumSet.of(PhoneNumberType.
MOBILE
,
104
checkNumbersValidAndCorrectType(PhoneNumberType.
MOBILE
, mobileTypes);
PhoneNumberUtilTest.java
212
assertFalse(phoneUtil.isNumberGeographical(BS_MOBILE)); // Bahamas,
mobile
phone number.
237
// A UK
mobile
phone, which has no area code.
269
// A UK
mobile
phone, which has NDC "7912".
275
// An Argentinian
mobile
which has NDC "911".
298
// An Italian
mobile
number.
315
PhoneNumberUtil.PhoneNumberType.
MOBILE
));
317
// for both fixed line and
mobile
, so neither of these should return null.
321
PhoneNumberUtil.PhoneNumberType.
MOBILE
));
324
PhoneNumberUtil.PhoneNumberType.
MOBILE
));
[
all
...]
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/geocoding/
PhoneNumberOfflineGeocoder.java
153
* the number is suitable for geocoding. We consider fixed-line and
mobile
numbers possible
256
numberType == PhoneNumberType.
MOBILE
||
/external/libphonenumber/java/src/com/android/i18n/phonenumbers/
PhoneNumberUtil.java
96
// a
mobile
phone in Colombia.
403
MOBILE
,
405
//
mobile
numbers by looking at the phone number itself.
417
//
MOBILE
or FIXED_LINE number. Some more information can be found here:
[
all
...]
Completed in 98 milliseconds