/packages/apps/Contacts/src/com/android/contacts/model/ |
D | RawContactModifier.java | 170 .get(type.rawValue) < type.specificMax); in getValidTypes() 205 final int count = typeCount.get(type.rawValue); in getTypeFrequencies() 206 typeCount.put(type.rawValue, count + 1); in getTypeFrequencies() 227 final Long rawValue = entry.getAsLong(kind.typeColumn); in getCurrentType() local 228 if (rawValue == null) return null; in getCurrentType() 229 return getType(kind, rawValue.intValue()); in getCurrentType() 238 final Integer rawValue = entry.getAsInteger(kind.typeColumn); in getCurrentType() 239 if (rawValue == null) return null; in getCurrentType() 240 return getType(kind, rawValue); in getCurrentType() 251 final int rawValue = cursor.getInt(index); in getCurrentType() local [all …]
|
/packages/services/Car/tests/carservice_test/src/com/android/car/ |
D | VmsPublisherClientServiceTest.java | 63 VehiclePropValue.RawValue rawValue = message.value; in testPublish() local 64 int messageType = rawValue.int32Values.get( in testPublish() 66 int layerId = rawValue.int32Values.get( in testPublish() 68 int layerVersion = rawValue.int32Values.get( in testPublish() 70 byte[] payload = new byte[rawValue.bytes.size()]; in testPublish() 71 for (int i = 0; i < rawValue.bytes.size(); ++i) { in testPublish() 72 payload[i] = rawValue.bytes.get(i); in testPublish()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/account/ |
D | AccountType.java | 323 public int rawValue; field in AccountType.EditType 335 public EditType(int rawValue, int labelRes) { in EditType() argument 336 this.rawValue = rawValue; in EditType() 360 return other.rawValue == rawValue; in equals() 367 return rawValue; in hashCode() 374 + rawValue in toString() 390 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument 391 super(rawValue, labelRes); in EventEditType()
|
/packages/apps/Contacts/src/com/android/contacts/model/account/ |
D | AccountType.java | 356 public int rawValue; field in AccountType.EditType 366 public EditType(int rawValue, int labelRes) { in EditType() argument 367 this.rawValue = rawValue; in EditType() 391 return other.rawValue == rawValue; in equals() 398 return rawValue; in hashCode() 404 + " rawValue=" + rawValue in toString() 415 public EventEditType(int rawValue, int labelRes) { in EventEditType() argument 416 super(rawValue, labelRes); in EventEditType()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/ |
D | DataItem.java | 249 private static int getTypePrecedence(DataKind kind, int rawValue) { in getTypePrecedence() argument 252 if (type.rawValue == rawValue) { in getTypePrecedence()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/ |
D | BluetoothPbapVcardManager.java | 310 public String onValueReceived(String rawValue, int type, String label, in getSelectedPhonebookNameList() 312 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in getSelectedPhonebookNameList() 723 public String onValueReceived(String rawValue, int type, String label, in composeContactsAndSendVCards() 729 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in composeContactsAndSendVCards() 824 public String onValueReceived(String rawValue, int type, String label, in composeContactsAndSendSelectedVCards() 828 String numberWithControlSequence = rawValue.replace(PhoneNumberUtils.PAUSE, 'p') in composeContactsAndSendSelectedVCards()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | LabeledEditorView.java | 470 mEntry.put(mKind.typeColumn, mType.rawValue); in createCustomDialog() 535 mEntry.put(mKind.typeColumn, mType.rawValue); in onTypeSelectionChange()
|
D | EventFieldEditorView.java | 290 return eventType.rawValue == Event.TYPE_BIRTHDAY && !eventType.secondary in isBirthdayType()
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
D | RawContactModifierTests.java | 507 before.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimEmptyAfterUpdate() 629 first.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateRemain() 635 second.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateRemain() 707 first.put(kindPhone.typeColumn, typeHome.rawValue); in testTrimUpdateUpdate()
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
D | DataAction.java | 87 if (type.rawValue == typeValue) { in DataAction()
|