Searched defs:GROUPS (Results 1 - 3 of 3) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DLegacyApiSupport.java95 private static final int GROUPS = 18; field in class:LegacyApiSupport
190 public static final String GROUPS = "view_v1_groups"; field in interface:LegacyApiSupport.LegacyTables
270 matcher.addURI(authority, "groups", GROUPS);
669 db.execSQL("DROP VIEW IF EXISTS " + LegacyTables.GROUPS + ";");
670 db.execSQL("CREATE VIEW " + LegacyTables.GROUPS + " AS SELECT " +
677 " FROM " + Tables.GROUPS +
795 case GROUPS:
1006 case GROUPS:
1533 case GROUPS:
1746 case GROUPS
[all...]
H A DContactsDatabaseHelper.java160 public static final String GROUPS = "groups"; field in interface:ContactsDatabaseHelper.Tables
182 GROUPS,
307 * Join string intended to be used with the GROUPS table/view. The main table must be named
331 public static final String GROUPS = "view_groups"; field in interface:ContactsDatabaseHelper.Views
556 public static final String CONCRETE_PACKAGE_ID = Tables.GROUPS + "." + PACKAGE_ID;
558 public static final String CONCRETE_ID = Tables.GROUPS + "." + BaseColumns._ID;
559 public static final String CONCRETE_SOURCE_ID = Tables.GROUPS + "." + Groups.SOURCE_ID;
562 public static final String CONCRETE_ACCOUNT_ID = Tables.GROUPS + "." + ACCOUNT_ID;
566 String CONCRETE_ACCOUNT_NAME = Views.GROUPS + "." + Groups.ACCOUNT_NAME;
567 String CONCRETE_ACCOUNT_TYPE = Views.GROUPS
[all...]
H A DContactsProvider2.java391 public static final int GROUPS = 10000; field in class:ContactsProvider2
487 = new String[] {Tables.GROUPS + "." + Groups._ID};
552 + "(SELECT " + Tables.GROUPS + "." + Groups._ID
553 + " FROM " + Tables.GROUPS
1081 + " FROM " + Views.GROUPS
1328 matcher.addURI(ContactsContract.AUTHORITY, "groups", GROUPS);
2728 case GROUPS: {
2945 Cursor c = db.query(Tables.GROUPS + "," + Tables.RAW_CONTACTS,
3274 final long groupId = db.insert(Tables.GROUPS, Groups.TITLE, values);
3758 case GROUPS
[all...]

Completed in 48 milliseconds