Home
last modified time | relevance | path

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

/packages/apps/Dialer/java/com/android/contacts/common/list/
DContactListFilter.java228 ContactListFilter otherFilter = (ContactListFilter) other; in equals() local
229 return filterType == otherFilter.filterType in equals()
230 && TextUtils.equals(accountName, otherFilter.accountName) in equals()
231 && TextUtils.equals(accountType, otherFilter.accountType) in equals()
232 && TextUtils.equals(dataSet, otherFilter.dataSet); in equals()
/packages/apps/Contacts/src/com/android/contacts/list/
DContactListFilter.java216 ContactListFilter otherFilter = (ContactListFilter) other; in equals() local
217 if (filterType != otherFilter.filterType in equals()
218 || !TextUtils.equals(accountName, otherFilter.accountName) in equals()
219 || !TextUtils.equals(accountType, otherFilter.accountType) in equals()
220 || !TextUtils.equals(dataSet, otherFilter.dataSet)) { in equals()