Home
last modified time | relevance | path

Searched refs:createGroup (Results 1 – 5 of 5) sorted by relevance

/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
DGroupsTest.java75 long groupGrey = mActor.createGroup(GROUP_GREY); in testGroupSummary()
76 long groupRed = mActor.createGroup(GROUP_RED); in testGroupSummary()
77 long groupGreen = mActor.createGroup(GROUP_GREEN); in testGroupSummary()
78 long groupBlue = mActor.createGroup(GROUP_BLUE); in testGroupSummary()
148 createGroup(mAccount, "gsid1", "title1")); in testGroupDirtySetOnChange()
157 createGroup(mAccount, "gsid1", "title1")); in testMarkAsDirtyParameter()
171 createGroup(mAccount, "gsid1", "title1")); in testGroupDirtyClearedWhenSetExplicitly()
184 long groupId = createGroup(mAccount, "g1", "gt1"); in testGroupDeletion1()
200 long groupId = createGroup(mAccount, "g1", "gt1"); in testGroupDeletion2()
213 createGroup(mAccount, "gsid1", "title1")); in testGroupVersionUpdates()
[all …]
DContactsProvider2Test.java434 long groupId = createGroup(null, "testGroup", "Test Group"); in testQueryContactGroup()
517 long groupId1 = createGroup(account1, "e", "f"); in testGroupQuery()
518 long groupId2 = createGroup(account2, "g", "h"); in testGroupQuery()
1005 long groupId1 = createGroup(mAccount, "gsid1", "title1"); in testGroupReuseAfterMembershipInsert()
1015 long groupId1 = createGroup(mAccount, "gsid1", "title1"); in testGroupInsertFailureOnGroupIdConflict()
1034 long visibleGroupId = createGroup(mAccount, "123", "Visible", 1); in testContactVisibilityUpdateOnMembershipChange()
1035 long invisibleGroupId = createGroup(mAccount, "567", "Invisible", 0); in testContactVisibilityUpdateOnMembershipChange()
1062 long groupId1 = createGroup(mAccount, "gsid1", "title1"); in testContentEntityIterator()
1063 long groupId2 = createGroup(mAccount, "gsid2", "title2"); in testContentEntityIterator()
1593 long groupId = createGroup(NO_ACCOUNT, "src1", "VIP"); in testLiveFolders()
DBaseContactsProvider2Test.java153 protected long createGroup(Account account, String sourceId, String title) { in createGroup() method in BaseContactsProvider2Test
154 return createGroup(account, sourceId, title, 1); in createGroup()
157 protected long createGroup(Account account, String sourceId, String title, int visible) { in createGroup() method in BaseContactsProvider2Test
DGlobalSearchSupportTest.java67 long groupId = createGroup(mAccount, "gsid1", "title1"); in testSearchSuggestionsByName()
DContactsActor.java382 public long createGroup(String groupName) { in createGroup() method in ContactsActor