Home
last modified time | relevance | path

Searched refs:thatKind (Results 1 – 2 of 2) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DDataItem.java193 DataKind thatKind = that.getDataKind(); in collapseWith() local
196 if ((!hasKindTypeColumn(thisKind) && that.hasKindTypeColumn(thatKind)) || in collapseWith()
197 that.hasKindTypeColumn(thatKind) && in collapseWith()
200 RawContactModifier.getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind))) { in collapseWith()
201 mContentValues.put(thatKind.typeColumn, that.getKindTypeColumn(thatKind)); in collapseWith()
202 mKind = thatKind; in collapseWith()
207 thatKind.maxLinesForDisplay); in collapseWith()
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DDataItem.java194 DataKind thatKind = that.getDataKind(); in collapseWith() local
197 if ((!hasKindTypeColumn(thisKind) && that.hasKindTypeColumn(thatKind)) in collapseWith()
198 || (that.hasKindTypeColumn(thatKind) in collapseWith()
200 > getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind)))) { in collapseWith()
201 mContentValues.put(thatKind.typeColumn, that.getKindTypeColumn(thatKind)); in collapseWith()
202 mKind = thatKind; in collapseWith()
206 mKind.maxLinesForDisplay = Math.max(thisKind.maxLinesForDisplay, thatKind.maxLinesForDisplay); in collapseWith()