Searched refs:AUTO_ADD (Results 1 – 10 of 10) sorted by relevance
/packages/apps/Contacts/src/com/android/contacts/ |
D | GroupMetaDataLoader.java | 37 Groups.AUTO_ADD, 48 public final static int AUTO_ADD = 5; field in GroupMetaDataLoader
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
D | GroupUtil.java | 54 + Groups.AUTO_ADD + "=0 AND " + Groups.FAVORITES + "=0"; 316 autoAdd = cursor.getColumnIndex(Groups.AUTO_ADD); in GroupsProjection() 331 autoAdd = list.indexOf(Groups.AUTO_ADD); in GroupsProjection()
|
D | GroupMetaData.java | 79 this.defaultGroup = getBoolean(cursor, GroupMetaDataLoader.AUTO_ADD); in GroupMetaData()
|
/packages/apps/Dialer/java/com/android/contacts/common/model/ |
D | ContactLoader.java | 641 !cursor.isNull(GroupQuery.AUTO_ADD) && cursor.getInt(GroupQuery.AUTO_ADD) != 0; in loadGroupMetaData() 957 public static final int AUTO_ADD = 5; field in ContactLoader.GroupQuery 966 Groups.AUTO_ADD,
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | GroupMembershipView.java | 291 } else if (!mGroupMetaData.isNull(GroupMetaDataLoader.AUTO_ADD) in updateView() 292 && mGroupMetaData.getInt(GroupMetaDataLoader.AUTO_ADD) != 0) { in updateView()
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelper.java | 1542 Groups.AUTO_ADD + " INTEGER NOT NULL DEFAULT 0," + in onCreate() 1842 " AND " + Groups.AUTO_ADD + " != 0" + ");"); in createContactsTriggers() 1860 " AND " + Groups.AUTO_ADD + " != 0" + ");"); in createContactsTriggers() 1864 + " AFTER UPDATE OF " + Groups.AUTO_ADD + " ON " + Tables.GROUPS in createContactsTriggers() 2330 + Groups.AUTO_ADD + "," in createGroupsView() 4094 " AND " + Groups.AUTO_ADD + " != 0" + in updateContactVisible()
|
D | ContactsProvider2.java | 457 + " AND " + Groups.AUTO_ADD + " != 0"; 969 .add(Groups.AUTO_ADD)
|
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
D | ContactsDatabaseHelperUpgradeTest.java | 407 new TableColumn(Groups.AUTO_ADD, INTEGER, true, "0"),
|
D | BaseContactsProvider2Test.java | 216 values.put(Groups.AUTO_ADD, autoAdd ? 1 : 0); in createGroup()
|
D | ContactsProvider2Test.java | 892 Groups.AUTO_ADD, in testGroupsProjection() 920 Groups.AUTO_ADD, in testGroupsSummaryProjection()
|