HomeSort by relevance Sort by last modified time
    Searched refs:Groups (Results 1 - 25 of 129) sorted by null

1 2 3 4 5 6

  /packages/apps/Contacts/src/com/android/contacts/
GroupListLoader.java 21 import android.provider.ContactsContract.Groups;
27 * and number of groups per account. This list is sorted by account type, account name, where the
29 * groups.
33 Groups.ACCOUNT_NAME,
34 Groups.ACCOUNT_TYPE,
35 Groups.DATA_SET,
36 Groups._ID,
37 Groups.TITLE,
38 Groups.SUMMARY_COUNT,
39 Groups.GROUP_IS_READ_ONLY
    [all...]
GroupMetaDataLoader.java 21 import android.provider.ContactsContract.Groups;
26 * Group meta-data loader. Loads all groups or just a single group from the
32 Groups.ACCOUNT_NAME,
33 Groups.ACCOUNT_TYPE,
34 Groups.DATA_SET,
35 Groups._ID,
36 Groups.TITLE,
37 Groups.AUTO_ADD,
38 Groups.FAVORITES,
39 Groups.GROUP_IS_READ_ONLY
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
GroupsListLoader.java 21 import android.provider.ContactsContract.Groups;
24 * Loads the list of all contact groups.
28 Groups._ID, // 0
29 Groups.TITLE, // 1
36 super(context, Groups.CONTENT_URI, COLUMNS, null, null, Groups.TITLE);
GoogleSource.java 34 import android.provider.ContactsContract.Groups;
184 Cursor cursor = resolver.query(Groups.CONTENT_URI,
185 new String[] {Groups.TITLE, Groups.SOURCE_ID, Groups.SHOULD_SYNC},
186 Groups.ACCOUNT_NAME + " =? AND " + Groups.ACCOUNT_TYPE + " =?",
215 newGroup.put(Groups.TITLE, GOOGLE_MY_CONTACTS_GROUP);
217 newGroup.put(Groups.ACCOUNT_NAME, accountName);
218 newGroup.put(Groups.ACCOUNT_TYPE, accountType)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupUtil.java 28 import android.provider.ContactsContract.Groups;
50 Groups.ACCOUNT_TYPE + " NOT NULL AND " + Groups.ACCOUNT_NAME + " NOT NULL AND "
51 + Groups.DELETED + "=0";
54 + Groups.AUTO_ADD + "=0 AND " + Groups.FAVORITES + "=0";
65 // System IDs of FFC groups in Google accounts
172 intent.setType(Groups.CONTENT_TYPE);
225 return uri != null && uri.toString().startsWith(Groups.CONTENT_URI.toString());
229 * Sort groups alphabetically and in a localized way
    [all...]
GroupNameEditDialogFragment.java 29 import android.provider.ContactsContract.Groups;
276 return new CursorLoader(getActivity(), Groups.CONTENT_SUMMARY_URI,
277 new String[] { Groups.TITLE, Groups.SYSTEM_ID, Groups.ACCOUNT_TYPE,
278 Groups.SUMMARY_COUNT, Groups.GROUP_IS_READ_ONLY},
288 // Empty system groups aren't shown in the nav drawer so it would be confusing to tell
337 builder.append(Groups.ACCOUNT_NAME).append("=? AND ")
338 .append(Groups.ACCOUNT_TYPE).append("=? AND "
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Ip4Dxe/
Ip4Igmp.c 69 Status = Mnp->Groups (Mnp, TRUE, &Group->Mac);
75 InsertHeadList (&IgmpCtrl->Groups, &Group->Link);
105 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
118 Count the number of IP4 multicast groups that are mapped to the
141 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
318 Status = Mnp->Groups (Mnp, TRUE, &Group->Mac);
324 InsertHeadList (&IgmpCtrl->Groups, &Group->Link);
381 Status = Mnp->Groups (Mnp, FALSE, &Group->Mac);
466 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
533 NET_LIST_FOR_EACH (Entry, &IgmpCtrl->Groups) {
    [all...]
Ip4Igmp.h 59 LIST_ENTRY Groups;
158 @return NULL if failed to allocate memory for the new groups,
172 both Groups and Addr, the network byte order is used by
175 @param Groups The array of group addresses to remove from.
176 @param Count The number of group addresses in the Groups.
179 @return The nubmer of group addresses in the Groups after remove.
180 It is Count if the Addr isn't in the Groups.
185 IN OUT IP4_ADDR *Groups,
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
GroupsTest.java 31 import android.provider.ContactsContract.Groups;
42 * Unit tests for {@link Groups} and {@link GroupMembership}.
75 // Create a handful of groups
99 // Add contacts to various mixture of groups. Grey will have all
113 // Walk across groups summary cursor and verify returned counts.
114 final Cursor cursor = mActor.resolver.query(Groups.CONTENT_SUMMARY_URI,
118 assertTrue("Didn't return summary for all groups", (cursor.getCount() == 4));
149 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI,
157 Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI,
163 values.put(Groups.NOTES, "New notes")
    [all...]
ContactsDatabaseHelperUpgradeTest.java 33 import android.provider.ContactsContract.Groups;
401 new TableColumn(Groups._ID, INTEGER, false, null),
404 new TableColumn(Groups.SOURCE_ID, TEXT, false, null),
405 new TableColumn(Groups.VERSION, INTEGER, true, "1"),
406 new TableColumn(Groups.DIRTY, INTEGER, true, "0"),
407 new TableColumn(Groups.TITLE, TEXT, false, null),
408 new TableColumn(Groups.TITLE_RES, INTEGER, false, null),
409 new TableColumn(Groups.NOTES, TEXT, false, null),
410 new TableColumn(Groups.SYSTEM_ID, TEXT, false, null),
411 new TableColumn(Groups.DELETED, INTEGER, true, "0")
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_GroupMembershipTest.java 24 import android.provider.ContactsContract.Groups;
68 .with(Groups.SOURCE_ID, "test_source_id")
69 .with(Groups.ACCOUNT_TYPE, "test_type")
70 .with(Groups.ACCOUNT_NAME, "test_name")
91 .with(Groups.ACCOUNT_TYPE, "test_type")
92 .with(Groups.ACCOUNT_NAME, "test_name")
93 .with(Groups.SOURCE_ID, "test_source_id")
94 .with(Groups.DELETED, 0)
Contacts_PeopleTest.java 32 import android.provider.Contacts.Groups;
61 Groups._ID,
62 Groups.NAME
77 // insert some lines in people table and groups table to be used in test case.
87 value.put(Groups.NAME, "test_group_0");
88 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
89 value.put(Groups.NAME, "test_group_1");
90 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value));
119 testValues.put(GroupsColumns.SYSTEM_ID, Groups.GROUP_MY_CONTACTS);
120 mProvider.insert(Groups.CONTENT_URI, testValues)
    [all...]
  /external/llvm/tools/llvm-pdbdump/
ClassDefinitionDumper.cpp 73 SymbolGroupByAccess Groups;
74 Groups.insert(std::make_pair(0, SymbolGroup()));
75 Groups.insert(std::make_pair((int)PDB_MemberAccess::Private, SymbolGroup()));
76 Groups.insert(
78 Groups.insert(std::make_pair((int)PDB_MemberAccess::Public, SymbolGroup()));
85 auto &AccessGroup = Groups.find((int)Access)->second;
104 Count += dumpAccessGroup((PDB_MemberAccess)0, Groups[0]);
106 Groups[(int)PDB_MemberAccess::Public]);
108 Groups[(int)PDB_MemberAccess::Protected]);
110 Groups[(int)PDB_MemberAccess::Private])
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/xml/
example_test.go 95 // the XML <Company> element is ignored. Also, the Groups field is assigned
110 Groups []string `xml:"Group>Value"`
142 fmt.Printf("Groups: %v\n", v.Groups)
149 // Groups: [Friends Squash]
  /prebuilts/go/linux-x86/src/encoding/xml/
example_test.go 95 // the XML <Company> element is ignored. Also, the Groups field is assigned
110 Groups []string `xml:"Group>Value"`
142 fmt.Printf("Groups: %v\n", v.Groups)
149 // Groups: [Friends Squash]
  /packages/apps/Contacts/tests/src/com/android/contacts/
GroupsDaoIntegrationTests.java 84 ContactsContract.Groups.DELETED)));
177 .withAppendedId(ContactsContract.Groups.CONTENT_URI, nonExistentId));
205 new String[] { ContactsContract.Groups.TITLE },
206 ContactsContract.Groups.DELETED + "=?",
218 final Cursor cursor = mResolver.query(ContactsContract.Groups.CONTENT_URI, null,
219 ContactsContract.Groups.TITLE + "=? AND " +
220 ContactsContract.Groups.DELETED + "=?",
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 37 import android.provider.ContactsContract.Groups;
65 final Cursor cursor = resolver.query(Groups.CONTENT_URI, new String[] { Groups._ID },
66 Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE + "=? AND " +
67 Groups.TITLE + "=?",
82 contentValues.put(Groups.ACCOUNT_NAME, account.name);
83 contentValues.put(Groups.ACCOUNT_TYPE, account.type);
84 contentValues.put(Groups.TITLE, SAMPLE_GROUP_NAME);
85 contentValues.put(Groups.GROUP_IS_READ_ONLY, true)
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
Ip6Mld.h 52 LIST_ENTRY Groups;
Ip6Mld.c 46 InsertTailList (&IpSb->MldCtrl.Groups, &Entry->Link);
73 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
84 Count the number of IP6 multicast groups that are mapped to the
107 NET_LIST_FOR_EACH (Entry, &MldCtrl->Groups) {
369 Status = IpSb->Mnp->Groups (IpSb->Mnp, TRUE, &Group->Mac);
520 Status = IpSb->Mnp->Groups (IpSb->Mnp, TRUE, &Group->Mac);
580 Status = IpSb->Mnp->Groups (IpSb->Mnp, FALSE, &Group->Mac);
650 // Leave the group. Leave all the groups if GroupAddress is NULL.
804 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
901 NET_LIST_FOR_EACH (Entry, &IpSb->MldCtrl.Groups) {
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 48 import android.provider.ContactsContract.Groups;
95 private static final int GROUPS = 18;
190 public static final String GROUPS = "view_v1_groups";
270 matcher.addURI(authority, "groups", GROUPS);
271 matcher.addURI(authority, "groups/#", GROUPS_ID);
272 matcher.addURI(authority, "groups/name/*/members", GROUP_NAME_MEMBERS);
273 // matcher.addURI(authority, "groups/name/*/members/filter/*",
275 matcher.addURI(authority, "groups/system_id/*/members", GROUP_SYSTEM_ID_MEMBERS);
276 // matcher.addURI(authority, "groups/system_id/*/members/filter/*"
    [all...]
ContactsDatabaseHelper.java 73 import android.provider.ContactsContract.Groups;
160 public static final String GROUPS = "groups";
182 GROUPS,
223 + "LEFT OUTER JOIN groups ON (groups._id = data." + GroupMembership.GROUP_ROW_ID
271 + "LEFT OUTER JOIN groups "
273 + " AND groups._id = data." + GroupMembership.GROUP_ROW_ID + ") ";
307 * Join string intended to be used with the GROUPS table/view. The main table must be named
308 * as "groups"
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
CustomContactListFilterActivity.java 42 import android.provider.ContactsContract.Groups;
84 * Shows a list of all available {@link Groups} available, letting the user
168 final Uri.Builder groupsUri = Groups.CONTENT_URI.buildUpon()
169 .appendQueryParameter(Groups.ACCOUNT_NAME, account.name)
170 .appendQueryParameter(Groups.ACCOUNT_TYPE, account.type);
172 groupsUri.appendQueryParameter(Groups.DATA_SET, account.dataSet).build();
179 ContactsContract.Groups.newEntityIterator(cursor);
231 * Entry holding any changes to {@link Groups} or {@link Settings} rows,
232 * such as {@link Groups#SHOULD_SYNC} or {@link Groups#GROUP_VISIBLE}
    [all...]
  /packages/apps/Dialer/java/com/android/contacts/common/model/
ContactLoader.java 36 import android.provider.ContactsContract.Groups;
591 * Loads groups meta-data for all groups associated with all constituent raw contacts' accounts.
607 selection.append("(" + Groups.ACCOUNT_NAME + "=? AND " + Groups.ACCOUNT_TYPE + "=?");
612 selection.append(" AND " + Groups.DATA_SET + "=?");
615 selection.append(" AND " + Groups.DATA_SET + " IS NULL");
626 Groups.CONTENT_URI,
    [all...]
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
ContactDbUtil.java 38 import android.provider.ContactsContract.Groups;
  /external/llvm/utils/TableGen/
OptParserEmitter.cpp 109 // Get the option groups and options.
110 const std::vector<Record*> &Groups =
117 // Generate prefix groups.
158 OS << "// Groups\n\n";
160 for (unsigned i = 0, e = Groups.size(); i != e; ++i) {
161 const Record &R = *Groups[i];
185 // The other option arguments (unused for groups).

Completed in 1845 milliseconds

1 2 3 4 5 6