/docs/source.android.com/src/community/ |
sidebar.md | 1 # Discussion Groups # 3 - [android-building](https://groups.google.com/forum/?fromgroups#!forum/android-building) (off-site) 4 - [android-contrib](https://groups.google.com/forum/?fromgroups#!forum/android-contrib) (off-site) 5 - [android-kernel](https://groups.google.com/forum/?fromgroups#!forum/android-kernel) (off-site) 6 - [android-platform](https://groups.google.com/forum/?fromgroups#!forum/android-platform) (off-site) 7 - [android-porting](https://groups.google.com/forum/?fromgroups#!forum/android-porting) (off-site) 8 - [repo-discuss](https://groups.google.com/forum/?fromgroups#!forum/repo-discuss) (off-site) 12 - [Groups Charter](groups-charter.html) 13 - [App Developer Groups](https://developer.android.com/resources/community-groups.html) (off-site [all...] |
index.md | 26 Please check out the groups below, and join any that seem interesting to 32 applications for Android, you can find a separate set of groups for those at 33 our sister site, developer.android.com: [https://developer.android.com/resources/community-groups.html] 39 - *Read the [Charter for our forums.](groups-charter.html)* This explains the (few) rules and guidelines for our community. 52 - Subscribe using Google Groups: [android-platform](https://groups.google.com/forum/?fromgroups#!forum/android-platform) 57 - Subscribe using Google Groups: [android-building](https://groups.google.com/forum/?fromgroups#!forum/android-building) 63 - Subscribe using Google Groups: [android-porting](https://groups.google.com/forum/?fromgroups#!forum/android-porting [all...] |
/packages/apps/Contacts/src/com/android/contacts/ |
GroupListLoader.java | 21 import android.provider.ContactsContract.Groups; 25 * and number of groups per account. This list is sorted by account type, account name, where the 27 * groups. 32 Groups.ACCOUNT_NAME, 33 Groups.ACCOUNT_TYPE, 34 Groups.DATA_SET, 35 Groups._ID, 36 Groups.TITLE, 37 Groups.SUMMARY_COUNT, 47 private static final Uri GROUP_LIST_URI = Groups.CONTENT_SUMMARY_URI [all...] |
GroupMetaDataLoader.java | 21 import android.provider.ContactsContract.Groups; 24 * Group meta-data loader. Loads all groups or just a single group from the 30 Groups.ACCOUNT_NAME, 31 Groups.ACCOUNT_TYPE, 32 Groups.DATA_SET, 33 Groups._ID, 34 Groups.TITLE, 35 Groups.AUTO_ADD, 36 Groups.FAVORITES, 37 Groups.GROUP_IS_READ_ONLY [all...] |
/external/clang/test/CodeGenObjCXX/ |
catch-id-type.mm | 12 id Groups(); 22 id groups; 25 groups = Groups(); // throws on errors. 29 Groups(); 38 groups = [ns_array array]; 42 groups = [ns_array array]; 44 return groups;
|
/bionic/libc/unistd/ |
initgroups.c | 38 gid_t* groups = groups0; local 42 if (getgrouplist(user, group, groups, &numgroups) < 0) { 43 groups = malloc(numgroups*sizeof(groups[0])); 44 if (groups == NULL) 46 if (getgrouplist(user,group,groups,&numgroups) < 0) { 51 ret = setgroups(numgroups, groups); 54 if (groups != groups0) 55 free(groups);
|
/external/webkit/LayoutTests/http/tests/appcache/ |
origin-delete-expected.txt | 1 This test checks that application cache groups correctly become obsolete after application cache is deletion for a specific origin.
|
/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);
|
/tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/generatemenucode/model/ |
MenuNode.java | 28 private final List<GroupNode> groups = new ArrayList<GroupNode>();
field in class:MenuNode 32 * or adds {@link GroupNode} into groups list.
45 groups.add(groupNode);
50 * Navigates into menu items and groups to deeply collect all menu items available in this root menu node
68 //adding inner menu items from groups
69 for (GroupNode group : groups)
|
/external/chromium/net/disk_cache/ |
experiments.h | 12 // This lists the experiment groups that we care about. Only add new groups at
|
/external/libselinux/src/ |
selinux_netlink.h | 17 /* Multicast groups */
|
/external/proguard/src/proguard/classfile/instruction/ |
package.html | 4 Not every instruction currently has its own class. Only groups of instructions
|
/external/regex-re2/re2/ |
unicode_groups.h | 5 // Unicode character groups. 48 // Negated groups are not included. 53 // Negated groups are included. 58 // Negated groups are included.
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
queuestatus_unittest.py | 52 groups = queue_status._build_status_groups(statuses) 53 self.assertEqual(len(groups), 5) 54 self.assertEqual(groups[0], statuses[0:2]) 55 self.assertEqual(groups[1], statuses[2:3]) 56 self.assertEqual(groups[2], statuses[3:4]) 57 self.assertEqual(groups[3], statuses[4:5]) 58 self.assertEqual(groups[4], statuses[5:6])
|
/external/guava/guava-testlib/src/com/google/common/testing/ |
RelationshipTester.java | 37 private final List<ImmutableList<T>> groups = Lists.newArrayList(); field in class:RelationshipTester 45 groups.add(ImmutableList.copyOf(group)); 50 for (int groupNumber = 0; groupNumber < groups.size(); groupNumber++) { 51 ImmutableList<T> group = groups.get(groupNumber); 59 // check unrelated items in all other groups 60 for (int unrelatedGroupNumber = 0; unrelatedGroupNumber < groups.size(); 63 ImmutableList<T> unrelatedGroup = groups.get(unrelatedGroupNumber); 75 ImmutableList<T> group = groups.get(groupNumber); 90 T item = groups.get(groupNumber).get(itemNumber); 91 T unrelated = groups.get(unrelatedGroupNumber).get(unrelatedItemNumber) [all...] |
/cts/tests/tests/provider/src/android/provider/cts/ |
Contacts_PeopleTest.java | 31 import android.provider.Contacts.Groups; 60 Groups._ID, 61 Groups.NAME 76 // insert some lines in people table and groups table to be used in test case. 86 value.put(Groups.NAME, "test_group_0"); 87 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value)); 88 value.put(Groups.NAME, "test_group_1"); 89 mGroupRowsAdded.add(mProvider.insert(Groups.CONTENT_URI, value)); 118 testValues.put(GroupsColumns.SYSTEM_ID, Groups.GROUP_MY_CONTACTS); 119 mProvider.insert(Groups.CONTENT_URI, testValues) [all...] |
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)
|
/build/tools/ |
adbs | 163 # groups[0]: log tag 164 # groups[1]: stack level 165 # groups[2]: "pc" 166 # groups[3]: code address 167 # groups[4]: library name 169 def SymbolTranslation(groups): 170 lib_name = groups[4] 171 code_addr = groups[3] 179 print groups[0] + groups[1] + " " + caller + "<-" + 211 groups = match.groups() variable [all...] |
/external/iproute2/ip/ |
ipmonitor.c | 115 unsigned groups = ~RTMGRP_TC; local 133 groups = 0; 136 groups = 0; 139 groups = 0; 142 groups = 0; 145 groups = 0; 147 groups = ~RTMGRP_TC; 159 groups |= nl_mgrp(RTNLGRP_LINK); 162 groups |= nl_mgrp(RTNLGRP_IPV4_IFADDR); 164 groups |= nl_mgrp(RTNLGRP_IPV6_IFADDR) [all...] |
/libcore/luni/src/main/java/java/lang/ |
ThreadGroup.java | 28 * This class is obsolete. See <i>Effective Java</i> Item 73, "Avoid thread groups" for details. 57 * Thread groups. Access is guarded by synchronizing on this field. 59 private final List<ThreadGroup> groups = new ArrayList<ThreadGroup>(3); field in class:ThreadGroup 131 synchronized (groups) { 132 for (ThreadGroup group : groups) { 147 synchronized (groups) { 148 for (ThreadGroup group : groups) { 163 synchronized (groups) { 167 groups.add(g); 197 * or thread groups in it) [all...] |
/packages/apps/Contacts/tests/src/com/android/contacts/calllog/ |
CallLogGroupBuilderTest.java | 40 /** Records the created groups. */ 63 assertEquals(0, mFakeGroupCreator.groups.size()); 69 assertEquals(0, mFakeGroupCreator.groups.size()); 76 assertEquals(0, mFakeGroupCreator.groups.size()); 84 assertEquals(1, mFakeGroupCreator.groups.size()); 85 assertGroupIs(0, 3, false, mFakeGroupCreator.groups.get(0)); 93 assertEquals(1, mFakeGroupCreator.groups.size()); 94 assertGroupIs(0, 3, false, mFakeGroupCreator.groups.get(0)); 105 assertEquals(2, mFakeGroupCreator.groups.size()); 106 assertGroupIs(1, 2, false, mFakeGroupCreator.groups.get(0)) 338 public final List<GroupSpec> groups = newArrayList(); field in class:CallLogGroupBuilderTest.FakeGroupCreator [all...] |
/external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/oauth/ |
CHANGELOG.txt | 8 http://groups.google.com/group/oauth/browse_thread/thread/d39931d39b4af4bd 10 http://groups.google.com/group/oauth/browse_thread/thread/1b203a51d9590226
|
/external/openssh/ |
groupaccess.c | 46 * supplementary groups. Return the number of groups in the list. 70 logit("getgrouplist: groups list too small"); 80 * Return 1 if one of user's groups is contained in groups. 84 ga_match(char * const *groups, int n) 90 if (match_pattern(groups_byname[i], groups[j])) 96 * Return 1 if one of user's groups matches group_pattern list.
|
/external/skia/src/animator/ |
thingstodo.txt | 7 groups within groups
|
/external/chromium/build/win/ |
chrome_win.croc | 20 # Groups
|