Searched defs:threadCount (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/test/java/libcore/java/lang/
H A DOldThreadGroupTest.java362 private List<MyThread> populateGroupsWithThreads(ThreadGroup group, int threadCount) { argument
364 populateGroupsWithThreads(group, threadCount, result);
368 private void populateGroupsWithThreads(ThreadGroup group, int threadCount, List<MyThread> out) { argument
369 for (int i = 0; i < threadCount; i++) {
370 out.add(new MyThread(group, "MyThread " + i + " of " + threadCount));
376 populateGroupsWithThreads(element, threadCount, out);

Completed in 58 milliseconds