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

/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DOneSizeTestContainerGenerator.java39 Collection<E> getSampleElements(int howMany); argument
H A DOneSizeGenerator.java72 public Collection<E> getSampleElements(int howMany) { argument
77 return new ArrayList<E>(allSampleElements.subList(0, howMany));
H A DAbstractContainerTester.java200 protected Collection<E> getSampleElements(int howMany) { argument
201 return getSubjectGenerator().getSampleElements(howMany);
H A DAbstractMapTester.java163 protected Collection<Map.Entry<K, V>> getSampleEntries(int howMany) { argument
164 return getSampleElements(howMany);
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DTestCertUtils.java99 * @param howMany - shows how many TestCerts must contain the CertPath generated
103 public static CertPath genCertPath(int howMany, int startID) { argument
104 Certificate[] certs = new Certificate[howMany];
105 for (int i = 0; i < howMany; i++) {
766 * @param howMany
769 public static String[] genNames(int howMany) { argument
774 for (int i = 0; i < howMany;) {
815 * @param howMany
818 public static X500Principal[] genX500s(int howMany) { argument
819 String names[] = genNames(howMany);
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
H A DSerializationStressTest2.java517 public DeepNesting(int howMany) { argument
520 for (int i = 1; i < howMany; i++) {
564 public DeepNestingWithWriteObject(int howMany) { argument
568 for (int i = 1; i < howMany; i++) {

Completed in 805 milliseconds