/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
InvisibleContactUtil.java | 43 final List<GroupMetaData> groups = contactData.getGroupMetaData(); 45 // For accounts without group support, groups is null 46 if (groups == null) return false; 49 final long defaultGroupId = getDefaultGroupId(groups); 102 /** return default group id or -1 if no group or several groups are marked as default */ 103 private static long getDefaultGroupId(List<GroupMetaData> groups) { 105 for (GroupMetaData group : groups) { 107 // two default groups? return neither
|
/external/selinux/libselinux/src/ |
seusers.c | 116 gid_t *groups = NULL; local 146 groups = calloc(ng, sizeof(*groups)); 147 if (!groups) 149 if (getgrouplist(name, gid, groups, &ng) < 0) 152 /* WTF? ng was 0 and we didn't fail? Are we in 0 groups? */ 157 if (grent->gr_gid == groups[i]) { 164 free(groups);
|
/development/tools/checkstyle/gitlint/ |
git.py | 83 groups=('filename', 'mode')) 98 groups=('filename', 'mode')) 134 groups=('line',))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/ |
launchspecification.py | 51 self.groups = [] 67 self.groups = ResultSet([('item', Group)]) 68 return self.groups
|
snapshot.py | 107 def share(self, user_ids=None, groups=None, dry_run=False): 112 groups, 115 def unshare(self, user_ids=None, groups=None, dry_run=False): 120 groups, 175 if 'groups' in self.attrs: 176 self.attrs['groups'].append(value) 178 self.attrs['groups'] = [value]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/vpc/ |
vpc.py | 145 def attach_classic_instance(self, instance_id, groups, dry_run=False): 148 or more of the VPC's security groups. You cannot link an EC2-Classic 155 groups that are associated with it. To change the security groups, you 164 :tye groups: list 165 :param groups: The ID of one or more of the VPC's security groups. 166 You cannot specify security groups from a different VPC. The 169 strings of the id's of the security groups. 180 groups=groups [all...] |
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/ |
UserAccountTest.groovy | 49 userAccount.groups = ['abc'] 52 userAccount.groups.add('def') 55 userAccount.groups = [] 110 userAccount.groups = [GROUP] 134 userAccount.groups = [GROUP] 158 userAccount.groups = [GROUP]
|
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
versionpredicate.py | 24 comp, verStr = res.groups() 108 self.name, paren = match.groups() 114 str = match.groups()[0]
|
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
versionpredicate.py | 24 comp, verStr = res.groups() 108 self.name, paren = match.groups() 114 str = match.groups()[0]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
versionpredicate.py | 24 comp, verStr = res.groups() 108 self.name, paren = match.groups() 114 str = match.groups()[0]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
versionpredicate.py | 24 comp, verStr = res.groups() 108 self.name, paren = match.groups() 114 str = match.groups()[0]
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/VirtualMachine/ |
TopLevelThreadGroupsTest.java | 49 * <BR> - number of returned thread groups is equal to 1; 51 * <BR>Also the test prints information about returned thread groups. 64 int groups = reply.getNextValueAsInt(); local 65 logWriter.println("==> Returned number of groups = " + groups); 66 assertEquals(1, groups); 68 for (int i = 0; i < groups; i++) { 119 logWriter.println("\n==> Returned child groups: " + childGroups);
|
/external/autotest/client/bin/ |
harness_ABAT.py | 25 val = m.groups()[0] 29 val = m.groups()[0] 33 val = m.groups()[0] 80 device = m.groups()[0]
|
/external/autotest/site_utils/stats/ |
apacheinfo.py | 37 val = int(m.groups(0)[0])
|
/external/avahi/avahi-daemon/ |
ini-file-parser-test.c | 39 printf("%u groups\n", f->n_groups); 41 for (g = f->groups; g; g = g->groups_next) {
|
/external/icu/icu4c/source/samples/layout/ |
cmaps.h | 62 CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups);
|
/external/icu/icu4c/source/test/letest/ |
cmaps.h | 58 CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups);
|
/external/icu/icu4c/source/test/perf/leperf/ |
cmaps.h | 58 CMAPGroupMapper(const CMAPTable *cmap, const CMAPGroup *groups, le_uint32 nGroups);
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
Args1.java | 36 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run") 37 public String groups; field in class:Args1
|
/external/testng/src/main/java/org/testng/annotations/ |
Test.java | 19 * The list of groups this class/method belongs to. 21 public String[] groups() default {}; 38 * The list of groups this method depends on. Every method 39 * member of one of these groups is guaranteed to have been
|
/external/testng/src/test/java/test/ |
CommandLineTest.java | 23 @Test(groups = { "current" } ) 46 @Test(groups = { "current" } ) 63 @Test(groups = { "current" } ) 86 @Test(groups = { "current" } )
|
Test2.java | 23 @Configuration(beforeTestMethod = true, groups = "excludeThisGroup") 24 // @BeforeMethod(groups = { "excludeThisGroup"} )
|
/external/testng/src/test/java/test/alwaysrun/ |
AlwaysRunBefore1.java | 43 @Test(groups = "A")
|
/external/testng/src/test/java/test/configuration/ |
ConfigurationGroups4SampleTest.java | 23 @Test(groups = "cg4-1")
|
/external/testng/src/test/java/test/parameters/ |
ParameterSample.java | 31 @Test(groups = { "singleString"})
|