HomeSort by relevance Sort by last modified time
    Searched refs:Groups (Results 26 - 50 of 83) sorted by null

12 3 4

  /packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListAdapter.java 23 import android.provider.ContactsContract.Groups;
37 * Adapter to populate the list of groups.
205 return ContentUris.withAppendedId(Groups.CONTENT_URI, groupId);
GroupDetailFragment.java 34 import android.provider.ContactsContract.Groups;
397 final Uri uri = ContentUris.withAppendedId(Groups.CONTENT_URI, mGroupId);
  /packages/apps/Contacts/tests/src/com/android/contacts/activities/
PeopleActivityTest.java 27 import android.provider.ContactsContract.Groups;
126 .expectQuery(Groups.CONTENT_URI)
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsProvider2.java 96 import android.provider.ContactsContract.Groups;
401 public static final int GROUPS = 10000;
489 + " AND " + Groups.FAVORITES + " != 0";
494 + " AND " + Groups.AUTO_ADD + " != 0";
497 = new String[] {Tables.GROUPS + "." + Groups._ID};
552 /** Sql where statement for filtering on groups. */
562 + "(SELECT " + Tables.GROUPS + "." + Groups._ID
563 + " FROM " + Tables.GROUPS
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 44 import android.provider.ContactsContract.Groups;
697 values.put(Groups.ACCOUNT_TYPE, accountType);
698 values.put(Groups.ACCOUNT_NAME, accountName);
699 values.put(Groups.DATA_SET, dataSet);
700 values.put(Groups.TITLE, label);
705 final Uri groupUri = resolver.insert(Groups.CONTENT_URI, values);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
ContactsContract_TestDataBuilder.java 31 import android.provider.ContactsContract.Groups;
310 return Groups.CONTENT_URI;
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
BaseContactsProvider2Test.java 51 import android.provider.ContactsContract.Groups;
205 values.put(Groups.SOURCE_ID, sourceId);
206 values.put(Groups.TITLE, title);
207 values.put(Groups.GROUP_VISIBLE, visible);
208 values.put(Groups.AUTO_ADD, autoAdd ? 1 : 0);
209 values.put(Groups.FAVORITES, favorite ? 1 : 0);
210 final Uri uri = TestUtil.maybeAddAccountQueryParameters(Groups.CONTENT_URI, account);
688 Cursor c = mResolver.query(Groups.CONTENT_URI, null, null, null, null);
722 assertNullOrEquals(c, rowId, Groups._ID);
724 assertNullOrEquals(c, sourceId, Groups.SOURCE_ID)
    [all...]
ContactsActor.java 684 values.put(ContactsContract.Groups.RES_PACKAGE, packageName);
685 values.put(ContactsContract.Groups.TITLE, groupName);
686 Uri groupUri = resolver.insert(ContactsContract.Groups.CONTENT_URI, values);
  /prebuilts/go/darwin-x86/src/syscall/
exec_bsd.go 141 // User and groups
143 ngroups := uintptr(len(cred.Groups))
144 groups := uintptr(0)
146 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
148 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, groups, 0)
exec_solaris.go 138 // User and groups
140 ngroups := uintptr(len(cred.Groups))
141 groups := uintptr(0)
143 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
145 err1 = setgroups1(ngroups, groups)
syscall_linux.go 350 Groups uint32
358 sa.raw.Groups = sa.Groups
370 sa.Groups = pp.Groups
exec_linux.go 191 // User and groups
193 ngroups := uintptr(len(cred.Groups))
194 var groups unsafe.Pointer
196 groups = unsafe.Pointer(&cred.Groups[0])
198 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, uintptr(groups), 0)
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
ztypes_linux_arm64.go 192 Groups uint32
  /prebuilts/go/linux-x86/src/syscall/
exec_bsd.go 141 // User and groups
143 ngroups := uintptr(len(cred.Groups))
144 groups := uintptr(0)
146 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
148 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, groups, 0)
exec_solaris.go 138 // User and groups
140 ngroups := uintptr(len(cred.Groups))
141 groups := uintptr(0)
143 groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
145 err1 = setgroups1(ngroups, groups)
syscall_linux.go 350 Groups uint32
358 sa.raw.Groups = sa.Groups
370 sa.Groups = pp.Groups
exec_linux.go 191 // User and groups
193 ngroups := uintptr(len(cred.Groups))
194 var groups unsafe.Pointer
196 groups = unsafe.Pointer(&cred.Groups[0])
198 _, _, err1 = RawSyscall(SYS_SETGROUPS, ngroups, uintptr(groups), 0)
exec_unix.go 117 Groups []uint32 // Supplementary group IDs.
ztypes_linux_arm64.go 192 Groups uint32
  /external/llvm/lib/Analysis/
LoopAccessAnalysis.cpp 233 // We build the groups from dependency candidates equivalence classes
243 // We use the following (greedy) algorithm to construct the groups
271 // separate checking groups for all pointers.
293 // Go through all equivalence classes, get the "pointer check groups"
305 SmallVector<CheckingPtrGroup, 2> Groups;
322 for (CheckingPtrGroup &Group : Groups) {
326 // will create separate groups for all remaining pointers.
342 Groups.push_back(CheckingPtrGroup(Pointer, *this));
347 std::copy(Groups.begin(), Groups.end(), std::back_inserter(CheckingGroups))
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonBitSimplify.cpp     [all...]
  /external/llvm/lib/MC/
ELFObjectWriter.cpp     [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/redshift/
layer1.py 174 about managing security groups, go to `Working with Security
175 Groups`_ in the Amazon Redshift Management Guide .
423 :param cluster_security_groups: A list of security groups to be
429 security groups to be associated with the cluster.
481 Amazon Redshift Parameter Groups`_
632 Creating parameter groups is independent of creating clusters.
640 more information about managing parameter groups, go to
641 `Amazon Redshift Parameter Groups`_ in the Amazon Redshift
664 a list of all the parameter groups that are owned by your AWS
665 account, including the default parameter groups for each Amazo
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntsecpkg.h 23 PTOKEN_GROUPS Groups;
29 PTOKEN_GROUPS Groups;
    [all...]

Completed in 1081 milliseconds

12 3 4