Home | History | Annotate | Download | only in contacts

Lines Matching full:groups

21 import android.provider.ContactsContract.Groups;
24 * Group meta-data loader. Loads all groups or just a single group from the
30 Groups.ACCOUNT_NAME,
31 Groups.ACCOUNT_TYPE,
32 Groups.DATA_SET,
33 Groups._ID,
34 Groups.TITLE,
35 Groups.AUTO_ADD,
36 Groups.FAVORITES,
37 Groups.GROUP_IS_READ_ONLY,
38 Groups.DELETED,
52 super(context, ensureIsGroupUri(groupUri), COLUMNS, Groups.ACCOUNT_TYPE + " NOT NULL AND "
53 + Groups.ACCOUNT_NAME + " NOT NULL", null, null);
65 if (!groupUri.toString().startsWith(Groups.CONTENT_URI.toString())) {