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

  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForGroupMembership.java 24 import android.provider.ContactsContract.Groups;
59 "SELECT COUNT(*) FROM " + Tables.DATA + " LEFT OUTER JOIN " + Tables .GROUPS
64 + " AND " + Groups.FAVORITES + "!=0";
231 Cursor c = db.query(Tables.GROUPS, Projections.ID,
241 groupValues.put(Groups.SOURCE_ID, sourceId);
242 long groupId = db.insert(Tables.GROUPS, null, groupValues);
ContactsDatabaseHelper.java 63 import android.provider.ContactsContract.Groups;
135 public static final String GROUPS = "groups";
157 GROUPS,
200 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID
248 + "LEFT OUTER JOIN groups "
250 + " AND groups._id = data." + GroupMembership.GROUP_ROW_ID + ") ";
275 * Join string intended to be used with the GROUPS table/view. The main table must be named
276 * as "groups"
    [all...]
LegacyApiSupport.java 48 import android.provider.ContactsContract.Groups;
95 private static final int GROUPS = 18;
212 public static final String GROUPS = "view_v1_groups";
292 matcher.addURI(authority, "groups", GROUPS);
293 matcher.addURI(authority, "groups/#", GROUPS_ID);
294 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS);
295 // matcher.addURI(authority, "groups/name/*/members/filter/*",
297 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS);
298 // matcher.addURI(authority, "groups/system_id/*/members/filter/*"
    [all...]
ContactsProvider2.java 92 import android.provider.ContactsContract.Groups;
329 private static final int GROUPS = 10000;
412 + " AND " + Groups.FAVORITES + " != 0";
417 + " AND " + Groups.AUTO_ADD + " != 0";
420 = new String[]{Tables.GROUPS + "." + Groups._ID};
475 /** Sql where statement for filtering on groups. */
485 + "(SELECT " + Tables.GROUPS + "." + Groups._ID
486 + " FROM " + Tables.GROUPS
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/activities/
ActionBarAdapter.java 88 public static int GROUPS = 0;
181 addTab(TabState.GROUPS, R.drawable.ic_tab_groups, R.string.contactsGroupsLabel);
206 return TabState.GROUPS;
222 case TabState.GROUPS:
PeopleActivity.java 357 final String GROUPS_TAG = "tab-pager-groups";
439 // For 2-pane in All and Groups but not in Favorites fragment, show the chevron
570 tabToOpen = TabState.GROUPS;
686 if (tab == TabState.GROUPS) {
706 case TabState.GROUPS:
745 case TabState.GROUPS:
    [all...]

Completed in 135 milliseconds