Home
last modified time | relevance | path

Searched refs:getKindTypeColumn (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DRelationDataItem.java53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
55 } else if (getKindTypeColumn(mKind) == Relation.TYPE_CUSTOM in shouldCollapseWith()
DEventDataItem.java53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
55 } else if (getKindTypeColumn(mKind) == Event.TYPE_CUSTOM in shouldCollapseWith()
DDataItem.java137 public int getKindTypeColumn(DataKind kind) { in getKindTypeColumn() method in DataItem
199 && getTypePrecedence(thisKind, getKindTypeColumn(thisKind)) in collapseWith()
200 > getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind)))) { in collapseWith()
201 mContentValues.put(thatKind.typeColumn, that.getKindTypeColumn(thatKind)); in collapseWith()
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DEventDataItem.java54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
56 } else if (getKindTypeColumn(mKind) == Event.TYPE_CUSTOM && in shouldCollapseWith()
DRelationDataItem.java54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
56 } else if (getKindTypeColumn(mKind) == Relation.TYPE_CUSTOM && in shouldCollapseWith()
DDataItem.java143 public int getKindTypeColumn(DataKind kind) { in getKindTypeColumn() method in DataItem
198 RawContactModifier.getTypePrecedence(thisKind, getKindTypeColumn(thisKind)) in collapseWith()
200 RawContactModifier.getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind))) { in collapseWith()
201 mContentValues.put(thatKind.typeColumn, that.getKindTypeColumn(thatKind)); in collapseWith()
/packages/apps/Contacts/tests/src/com/android/contacts/model/dataitem/
DDataItemTests.java98 assertEquals(1, dataList.get(0).getKindTypeColumn(kind)); in testDataItemCollapsing_genericDataItemFields()
126 ((EmailDataItem) dataList.get(0)).getKindTypeColumn(kind)); in testDataItemCollapsing_email()
310 ((PhoneDataItem) dataList.get(0)).getKindTypeColumn(kind)); in testDataItemCollapsing_phone()
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
DQuickContactActivity.java1496 subHeader = EventCompat.getTypeLabel(res, event.getKindTypeColumn(kind), in dataItemToEntry()
1516 relation.getKindTypeColumn(kind), in dataItemToEntry()
1530 final int kindTypeColumn = phone.getKindTypeColumn(kind); in dataItemToEntry()
1621 text = Email.getTypeLabel(res, email.getKindTypeColumn(kind), in dataItemToEntry()
1642 postal.getKindTypeColumn(kind), postal.getLabel()).toString(); in dataItemToEntry()
1672 sip.getKindTypeColumn(kind), sip.getLabel()).toString(); in dataItemToEntry()
DDataAction.java83 final int typeValue = item.getKindTypeColumn(kind); in DataAction()