HomeSort by relevance Sort by last modified time
    Searched refs:groups (Results 276 - 300 of 1042) sorted by null

<<11121314151617181920>>

  /external/testng/src/test/java/test/simple/
IncludedExcludedSampleTest.java 42 @Test(groups = "a")
  /external/testng/src/test/java/test/testng387/
FailedDPTest.java 38 @Test(dataProvider = "DP", groups = { "DPTest" })
  /external/testng/src/test/java/test/v6/
A.java 19 @Test(groups = "1")
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/lang/invoke/
DeserializeMethodTest.java 37 @Test(groups = { "serialization-hostile" })
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/
FillableStringTest.java 34 @Test(groups = "lib")
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
ZoomHeight.py 29 width, height, x, y = map(int, m.groups())
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
ZoomHeight.py 29 width, height, x, y = map(int, m.groups())
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 29 width, height, x, y = map(int, m.groups())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
ZoomHeight.py 29 width, height, x, y = map(int, m.groups())
  /system/core/adb/daemon/
main.cpp 113 // Add extra groups:
123 gid_t groups[] = {AID_ADB, AID_LOG, AID_INPUT, local
128 sizeof(groups) / sizeof(groups[0]),
129 groups);
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/
networkinterface.py 96 :ivar groups: List of security groups associated with the interface.
114 self.groups = []
126 self.groups = ResultSet([('item', Group)])
127 return self.groups
289 if spec.groups is not None:
290 for j, group_id in enumerate(spec.groups):
337 groups=None, delete_on_termination=None,
346 self.groups = groups
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/mashups/
order.py 45 self.groups = []
97 self.groups.append(group)
100 self.groups.append(self.choose_from_list(l, prompt='Choose Security Group'))
151 self.groups = params.get('groups', self.groups)
152 if not self.groups:
179 item.ami.id, item.groups, item.key.name))
190 security_groups=item.groups, instance_type=item.instance_type,
  /external/iproute2/tc/
tc_monitor.c 76 unsigned groups = nl_mgrp(RTNLGRP_TC); local
107 if (rtnl_open(&rth, groups) < 0)
  /external/testng/src/test/java/test/groupinvocation/
GroupSuiteTest.java 14 * Test that <suite> tags can have groups.
57 XmlSuite s = createXmlSuite("Groups");
60 XmlTest t = createXmlTest(s, "Groups-test", GroupSuiteSampleTest.class.getName());
72 private String[] g(String... groups) {
73 return groups;
  /external/tpm2/
parsep3 52 func_name = re.sub('^TPM2_', '', f.groups(0)[0])
56 line_num = int(num.groups(0)[0])
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/autoscale/
test_connection.py 46 # have any autoscale groups to introspect. It's useful, however, to
54 groups = c.get_all_groups()
55 for group in groups:
120 groups = c.get_all_groups()
121 for group in groups:
147 groups = c.get_all_groups()
148 for group in groups:
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/vpc/
test_vpc.py 218 groups = ['sg-foo', 'sg-bar']
223 groups=groups,
244 groups = [sec_group_1, sec_group_2]
249 groups=groups,
  /prebuilts/go/darwin-x86/src/index/suffixarray/
qsufsort.go 11 // Consecutive groups of suffixes in sa are labeled as sorted groups or
12 // unsorted groups. For a given pass of the sorter, all suffixes are ordered
15 // Consecutive groups of suffixes with identical first h characters are an
16 // unsorted group. In each pass of the algorithm, unsorted groups are sorted
23 // and when all groups are sorted, this slice is the inverse suffix array.
36 // this becomes the inverse of the suffix array when all groups are sorted
45 sl := 0 // sl is negated length of sorted groups
52 sa[pi+sl] = sl // combine sorted groups before pi
63 sa[pi+sl] = sl // combine sorted groups at end of s
    [all...]
  /prebuilts/go/linux-x86/src/index/suffixarray/
qsufsort.go 11 // Consecutive groups of suffixes in sa are labeled as sorted groups or
12 // unsorted groups. For a given pass of the sorter, all suffixes are ordered
15 // Consecutive groups of suffixes with identical first h characters are an
16 // unsorted group. In each pass of the algorithm, unsorted groups are sorted
23 // and when all groups are sorted, this slice is the inverse suffix array.
36 // this becomes the inverse of the suffix array when all groups are sorted
45 sl := 0 // sl is negated length of sorted groups
52 sa[pi+sl] = sl // combine sorted groups before pi
63 sa[pi+sl] = sl // combine sorted groups at end of s
    [all...]
  /external/toybox/toys/pending/
mke2fs.c 93 unsigned groups; // Total number of block groups.
228 temp = (inodes + TT.groups - 1) / TT.groups;
261 sb->inodes_count = SWAP_LE32(TT.inodespg * TT.groups);
264 temp = TT.inodespg*TT.groups - INODES_RESERVED;
293 // Superblock backups are on groups 0, 1, and powers of 3, 5, and 7.
312 used = TT.groups * sizeof(struct ext2_group);
471 // groups, and loop until this is enough groups to store this many blocks
    [all...]
  /system/connectivity/shill/
key_file_store.cc 149 gchar** groups = g_key_file_get_groups(key_file_, &length); local
150 if (!groups) {
151 LOG(ERROR) << "Unable to obtain groups.";
154 set<string> group_set(groups, groups + length);
155 g_strfreev(groups);
162 set<string> groups = GetGroups(); local
164 for (const auto& group : groups) {
174 set<string> groups = GetGroups(); local
176 for (const auto& group : groups) {
    [all...]
  /external/chromium-trace/catapult/firefighter/update/handlers/
builds.py 127 configuration, host_shard = match.groups()
192 r'(Builder|Perf)(?: \([0-9]+\))?$', builder_name).groups()
206 builder_name).groups()
214 builder_name).groups()
220 builder_name).groups()
  /system/connectivity/shill/wifi/
wifi_provider_unittest.cc 395 set<string> groups; local
396 groups.insert(kGroupId);
397 EXPECT_CALL(default_profile_storage_, GetGroups()).WillOnce(Return(groups));
504 set<string> groups; local
505 groups.insert(
511 .WillRepeatedly(Return(groups));
523 set<string> groups; local
524 groups.insert(
530 .WillRepeatedly(Return(groups));
542 set<string> groups; local
560 set<string> groups; local
578 set<string> groups; local
596 set<string> groups; local
614 set<string> groups; local
633 set<string> groups; local
668 set<string> groups; local
699 set<string> groups; local
807 set<string> groups; local
1577 set<string> groups; local
1608 set<string> groups; local
1623 set<string> groups; local
1787 set<string> groups; local
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList1.java 90 // Sample data set. children[i] contains the children (String[]) for groups[i].
91 private String[] groups = { "People Names", "Dog Names", "Cat Names", "Fish Names" }; field in class:ExpandableList1.MyExpandableListAdapter
135 return groups[groupPosition];
139 return groups.length;
  /external/avahi/avahi-daemon/
static-services.c 80 AVAHI_LLIST_FIELDS(StaticServiceGroup, groups);
83 static AVAHI_LLIST_HEAD(StaticServiceGroup, groups) = NULL;
147 AVAHI_LLIST_PREPEND(StaticServiceGroup, groups, groups, g);
176 AVAHI_LLIST_REMOVE(StaticServiceGroup, groups, groups, g);
656 for (g = groups; g; g = g->groups_next)
675 for (g = groups; g; g = n) {
728 while (groups)
729 static_service_group_free(groups);
    [all...]

Completed in 740 milliseconds

<<11121314151617181920>>