/external/testng/src/test/java/test/tmp/ |
ConcreteTest.java | 12 @Test(groups = "fixture")
|
RegisterCommandTest.java | 7 @Test(groups = { "NewUser" })
|
Test0.java | 13 @Test(groups = { "G0" })
|
TestFixture.java | 17 @Configuration(beforeTest=true, groups="fixture")
|
/prebuilts/go/darwin-x86/src/os/user/ |
listgroups_unix.go | 25 return nil, fmt.Errorf("user: list groups for %s: invalid gid %q", u.Username, u.Gid) 38 return nil, fmt.Errorf("user: list groups for %s: member of more than %d groups", u.Username, maxGroups) 43 return nil, fmt.Errorf("user: list groups for %s failed (changed groups?)", u.Username)
|
/prebuilts/go/linux-x86/src/os/user/ |
listgroups_unix.go | 25 return nil, fmt.Errorf("user: list groups for %s: invalid gid %q", u.Username, u.Gid) 38 return nil, fmt.Errorf("user: list groups for %s: member of more than %d groups", u.Username, maxGroups) 43 return nil, fmt.Errorf("user: list groups for %s failed (changed groups?)", u.Username)
|
/external/ltp/utils/ffsb-6.0-rc2/ |
ffsb_fc.c | 43 fc->groups = ffsb_malloc(sizeof(ffsb_tg_t) * num_tg); 55 fc->groups = tg; 66 destroy_ffsb_tg(&fc->groups[i]); 68 free(fc->groups); 85 return &fc->groups[num];
|
/external/testng/src/main/java/org/testng/internal/ |
ConfigurationGroupMethods.java | 89 String[] groups= m.getGroups();
local 90 for(String g : groups) {
128 synchronized public void removeBeforeGroups(String[] groups) {
129 for(String group : groups) {
135 synchronized public void removeAfterGroups(Collection<String> groups) {
136 for(String group : groups) {
|
OverrideProcessor.java | 11 * Override the groups included in the XML file with groups specified on the command line. 20 public OverrideProcessor(String[] groups, String[] excludedGroups) { 21 m_groups = groups;
|
/external/deqp/scripts/opengl/ |
gen_query_util.py | 65 def addNamePrefix (prefix, groups): 66 return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) for groupName, groupQueries in groups]
|
/external/skia/infra/bots/recipe_modules/core/resources/ |
binary_size_utils.py | 44 size, sym_type, sym = match.groups()[0:3] 53 # sym_type, sym = match.groups()[0:2] 57 sym_type, sym = match.groups()
|
/external/testng/src/test/java/test/configuration/ |
ConfigurationGroups1SampleTest.java | 28 @Test(groups = "cg1-a") 33 @Test(groups = "cg1-1")
|
ConfigurationGroups5SampleTest.java | 25 @Test(groups = "cg5-1") 34 @Test(groups = "cg5-2")
|
ConfigurationGroups6SampleTest.java | 24 @Test(groups = "cg6-1") 31 @Test(groups = "cg6-1")
|
ConfigurationGroups7SampleTest.java | 20 @Test(groups = {"A"}) 25 @Test(groups = {"A"})
|
/toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/ |
strip-1.d | 11 There are no section groups in this file.
|
strip-4.d | 11 There are no section groups in this file.
|
strip-6.d | 11 There are no section groups in this file.
|
strip-8.d | 11 There are no section groups in this file.
|
/external/jcommander/src/test/java/com/beust/jcommander/args/ |
ArgsDefault.java | 34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run") 35 public String groups; field in class:ArgsDefault
|
/external/testng/src/main/java/org/testng/annotations/ |
AfterClass.java | 15 * The list of groups this class/method belongs to. 17 public String[] groups() default {}; 20 * The list of groups this method depends on. Every method 21 * member of one of these groups is guaranteed to have been 45 * regardless of what groups it belongs to. 55 * If true, this @Configuration method will belong to groups specified in the
|
AfterGroups.java | 10 * The list of groups that this configuration method will run after. If 11 * specified it overrides the list of groups provided through 12 * {@link #groups()} attribute. This method is guaranteed to run shortly 13 * after the last test method that belongs to any of these groups is 24 * The list of groups this class/method belongs to. The list also describes the groups 27 public String[] groups() default {}; 30 * The list of groups this method depends on. Every method 31 * member of one of these groups is guaranteed to have been 55 * regardless of what groups it belongs to [all...] |
AfterMethod.java | 15 * The list of groups this class/method belongs to. 17 public String[] groups() default {}; 20 * The list of groups this method depends on. Every method 21 * member of one of these groups is guaranteed to have been 45 * regardless of what groups it belongs to. 55 * If true, this @Configuration method will belong to groups specified in the
|
AfterSuite.java | 15 * The list of groups this class/method belongs to. 17 public String[] groups() default {}; 20 * The list of groups this method depends on. Every method 21 * member of one of these groups is guaranteed to have been 45 * regardless of what groups it belongs to. 55 * If true, this @Configuration method will belong to groups specified in the
|
AfterTest.java | 15 * The list of groups this class/method belongs to. 17 public String[] groups() default {}; 20 * The list of groups this method depends on. Every method 21 * member of one of these groups is guaranteed to have been 45 * regardless of what groups it belongs to. 55 * If true, this @Configuration method will belong to groups specified in the
|