HomeSort by relevance Sort by last modified time
    Searched full:phonetype (Results 1 - 25 of 36) sorted by null

1 2

  /external/protobuf/examples/
addressbook.proto 13 enum PhoneType {
21 optional PhoneType type = 2 [default = HOME];
AddPerson.java 44 phoneNumber.setType(Person.PhoneType.MOBILE);
46 phoneNumber.setType(Person.PhoneType.HOME);
48 phoneNumber.setType(Person.PhoneType.WORK);
  /external/chromium/chrome/browser/autofill/
phone_field.h 36 enum PhoneType {
89 void SetPhoneType(PhoneType phone_type);
94 PhoneType phone_type_;
phone_field.cc 115 phone_field->SetPhoneType(static_cast<PhoneField::PhoneType>(i));
326 void PhoneField::SetPhoneType(PhoneType phone_type) {
  /packages/apps/Phone/src/com/android/phone/
SimContacts.java 76 final int phoneType;
83 phoneType = Phone.TYPE_WORK;
85 phoneType = Phone.TYPE_MOBILE;
87 phoneType = Phone.TYPE_HOME;
89 phoneType = Phone.TYPE_OTHER;
93 phoneType = Phone.TYPE_OTHER;
142 final int phoneType = namePhoneTypePair.phoneType;
174 builder.withValue(Phone.TYPE, phoneType);
CallCard.java 363 int phoneType = phone.getPhoneType();
364 if (phoneType == Phone.PHONE_TYPE_CDMA) {
374 } else if ((phoneType == Phone.PHONE_TYPE_GSM)
375 || (phoneType == Phone.PHONE_TYPE_SIP)) {
525 int phoneType = call.getPhone().getPhoneType();
526 if (phoneType == Phone.PHONE_TYPE_CDMA) {
528 } else if ((phoneType == Phone.PHONE_TYPE_GSM)
529 || (phoneType == Phone.PHONE_TYPE_SIP)) {
532 throw new IllegalStateException("Unexpected phone type: " + phoneType);
560 if (phoneType == Phone.PHONE_TYPE_CDMA)
    [all...]
PhoneUtils.java 381 int phoneType = ringing.getPhone().getPhoneType();
395 if (phoneType == Phone.PHONE_TYPE_CDMA) {
657 int phoneType = phone.getPhoneType();
661 if (phoneType == Phone.PHONE_TYPE_GSM && gatewayUri == null) {
677 if (phoneType == Phone.PHONE_TYPE_CDMA) {
682 if (phoneType == Phone.PHONE_TYPE_CDMA) {
    [all...]
MobileNetworkSettings.java 241 int phoneType = mPhone.getPhoneType();
242 if (phoneType == Phone.PHONE_TYPE_CDMA) {
258 } else if (phoneType == Phone.PHONE_TYPE_GSM) {
261 throw new IllegalStateException("Unexpected phone type: " + phoneType);
InCallTouchUi.java 427 int phoneType = cm.getActiveFgCall().getPhone().getPhoneType();
457 if (phoneType == Phone.PHONE_TYPE_CDMA) {
462 } else if ((phoneType == Phone.PHONE_TYPE_GSM)
463 || (phoneType == Phone.PHONE_TYPE_SIP)) {
468 throw new IllegalStateException("Unexpected phone type: " + phoneType);
483 if ((phoneType == Phone.PHONE_TYPE_GSM)
484 || (phoneType == Phone.PHONE_TYPE_SIP)) {
492 } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
497 throw new IllegalStateException("Unexpected phone type: " + phoneType);
562 if (phoneType == Phone.PHONE_TYPE_CDMA)
    [all...]
PhoneInterfaceManager.java 148 int phoneType = mPhone.getPhoneType();
149 if (phoneType == Phone.PHONE_TYPE_CDMA) {
153 } else if (phoneType == Phone.PHONE_TYPE_GSM) {
157 throw new IllegalStateException("Unexpected phone type: " + phoneType);
BluetoothHandsfree.java     [all...]
InCallScreen.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactReadOnlyEditorView.java 209 final CharSequence phoneType;
211 phoneType = Phone.getTypeLabel(
214 phoneType = null;
217 phoneNumber, phoneType, i == 0);
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneFactory.java 140 int phoneType = getPhoneType(networkMode);
141 if (phoneType == Phone.PHONE_TYPE_GSM) {
145 } else if (phoneType == Phone.PHONE_TYPE_CDMA) {
TelephonyCapabilities.java 177 public static boolean supportsAdn(int phoneType) {
178 return phoneType == Phone.PHONE_TYPE_GSM;
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapCallLogComposer.java 174 public String composeVCardForPhoneOwnNumber(int phonetype, String phoneName,
189 String label = Integer.toString(phonetype);
190 builder.appendTelLine(phonetype, label, phoneNumber, false);
  /packages/apps/Contacts/src/com/android/contacts/list/
ShortcutIntentBuilder.java 290 String phoneNumber, int phoneType, String phoneLabel, String shortcutAction) {
297 bitmap = generatePhoneNumberIcon(bitmap, phoneType, phoneLabel,
301 bitmap = generatePhoneNumberIcon(bitmap, phoneType, phoneLabel,
357 private Bitmap generatePhoneNumberIcon(Bitmap photo, int phoneType, String phoneLabel,
380 CharSequence overlay = Phone.getTypeLabel(r, phoneType, phoneLabel);
  /cts/tests/tests/app/src/android/app/cts/
SystemFeaturesTest.java 307 int phoneType = mTelephonyManager.getPhoneType();
308 switch (phoneType) {
326 throw new IllegalArgumentException("Did you add a new phone type? " + phoneType);
  /cts/tests/tests/telephony/src/android/telephony/cts/
TelephonyManagerTest.java 161 int phoneType = mTelephonyManager.getPhoneType();
162 switch (phoneType) {
177 throw new IllegalArgumentException("Did you add a new phone type? " + phoneType);
  /frameworks/base/services/java/com/android/server/location/
ComprehensiveCountryDetector.java 214 final int phoneType = mTelephonyManager.getPhoneType();
215 if (DEBUG) Slog.v(TAG, " phonetype=" + phoneType);
216 return phoneType == TelephonyManager.PHONE_TYPE_GSM;
  /packages/apps/VoiceDialer/src/com/android/voicedialer/
CommandRecognizerEngine.java     [all...]
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactOperations.java 175 * @param phoneType the type: cell, home, etc.
178 public ContactOperations addPhone(String phone, int phoneType) {
182 mValues.put(Phone.TYPE, phoneType);
  /packages/apps/Contacts/src/com/android/contacts/
SpecialCharSequenceMgr.java 241 int phoneType = telephonyManager.getCurrentPhoneType();
242 if (phoneType == TelephonyManager.PHONE_TYPE_GSM) {
245 } else if (phoneType == TelephonyManager.PHONE_TYPE_CDMA) {
  /development/samples/ContactManager/src/com/example/android/contactmanager/
ContactAdder.java 175 int phoneType = mContactPhoneTypes.get(
201 .withValue(ContactsContract.CommonDataKinds.Phone.TYPE, phoneType)
  /frameworks/base/telephony/java/com/android/internal/telephony/sip/
SipCommandInterface.java 361 public void setPhoneType(int phoneType) { //Set by CDMAPhone and GSMPhone constructor

Completed in 701 milliseconds

1 2