Searched refs:AUTO_ADD (Results 1 - 9 of 9) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/
H A DGroupMetaDataLoader.java35 Groups.AUTO_ADD,
46 public final static int AUTO_ADD = 5; field in class:GroupMetaDataLoader
H A DGroupListLoader.java51 + Groups.ACCOUNT_NAME + " NOT NULL AND " + Groups.AUTO_ADD + "=0 AND " +
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DGroupMembershipView.java233 } else if (!mGroupMetaData.isNull(GroupMetaDataLoader.AUTO_ADD)
234 && mGroupMetaData.getInt(GroupMetaDataLoader.AUTO_ADD) != 0) {
H A DRawContactEditorView.java415 if (!mGroupMetaData.isNull(GroupMetaDataLoader.AUTO_ADD)
416 && mGroupMetaData.getInt(GroupMetaDataLoader.AUTO_ADD) != 0) {
/packages/apps/Contacts/src/com/android/contacts/model/
H A DContactLoader.java289 Groups.AUTO_ADD,
299 public static final int AUTO_ADD = 6; field in class:ContactLoader.GroupQuery
800 final boolean defaultGroup = cursor.isNull(GroupQuery.AUTO_ADD)
802 : cursor.getInt(GroupQuery.AUTO_ADD) != 0;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactsDatabaseHelper.java1218 Groups.AUTO_ADD + " INTEGER NOT NULL DEFAULT 0," +
1493 // Update DEFAULT_FILTER table per AUTO_ADD column update.
1510 " AND " + Groups.AUTO_ADD + " != 0" + ");");
1527 " AND " + Groups.AUTO_ADD + " != 0" + ");");
1531 + " AFTER UPDATE OF " + Groups.AUTO_ADD + " ON " + Tables.GROUPS
1953 + Groups.AUTO_ADD + ","
3099 + " ADD " + Groups.AUTO_ADD + " INTEGER NOT NULL DEFAULT 0;");
3532 * group with AUTO_ADD (implying it is the default group) flag in the groups table.
4595 // does not have any AUTO_ADD groups.
4614 " AND " + Groups.AUTO_ADD
[all...]
H A DContactsProvider2.java423 + " AND " + Groups.AUTO_ADD + " != 0";
927 .add(Groups.AUTO_ADD)
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DBaseContactsProvider2Test.java197 values.put(Groups.AUTO_ADD, autoAdd ? 1 : 0);
H A DContactsProvider2Test.java671 Groups.AUTO_ADD,
699 Groups.AUTO_ADD,

Completed in 322 milliseconds