HomeSort by relevance Sort by last modified time
    Searched refs:superPrimary (Results 1 - 5 of 5) sorted by null

  /packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DataItem.java 135 Integer superPrimary = mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
136 return superPrimary != null && superPrimary != 0;
  /packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DataItem.java 126 Integer superPrimary = mContentValues.getAsInteger(Data.IS_SUPER_PRIMARY);
127 return superPrimary != null && superPrimary != 0;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandler.java 120 final Integer superPrimary = values.getAsInteger(Data.IS_SUPER_PRIMARY);
121 if ((primary != null && primary != 0) || (superPrimary != null && superPrimary != 0)) {
128 if (superPrimary != null) {
129 if (superPrimary != 0) {
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 249 boolean superPrimary) {
256 if (superPrimary) {
273 boolean superPrimary) {
274 return insertPhoneNumber(rawContactId, phoneNumber, primary, superPrimary, Phone.TYPE_HOME);
283 boolean superPrimary, int type) {
292 if (superPrimary) {
309 boolean superPrimary) {
310 return insertEmail(rawContactId, email, primary, superPrimary, Email.TYPE_HOME, null);
319 boolean superPrimary, int type, String label) {
329 if (superPrimary) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/
AbstractContactAggregator.java     [all...]

Completed in 218 milliseconds