Searched refs:sizeMatcher (Results 1 - 5 of 5) sorted by relevance

/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
H A DIsArrayWithSize.java13 public IsArrayWithSize(Matcher<? super Integer> sizeMatcher) { argument
14 super(sizeMatcher, "an array with size","array size");
28 * @param sizeMatcher
31 public static <E> Matcher<E[]> arrayWithSize(Matcher<? super Integer> sizeMatcher) { argument
32 return new IsArrayWithSize<E>(sizeMatcher);
H A DIsCollectionWithSize.java14 public IsCollectionWithSize(Matcher<? super Integer> sizeMatcher) { argument
15 super(sizeMatcher, "a collection with size", "collection size");
29 * @param sizeMatcher
32 public static <E> Matcher<Collection<? extends E>> hasSize(Matcher<? super Integer> sizeMatcher) { argument
33 return new IsCollectionWithSize<E>(sizeMatcher);
H A DIsIterableWithSize.java12 public IsIterableWithSize(Matcher<? super Integer> sizeMatcher) { argument
13 super(sizeMatcher, "an iterable with size", "iterable size");
33 * @param sizeMatcher
36 public static <E> Matcher<Iterable<E>> iterableWithSize(Matcher<? super Integer> sizeMatcher) { argument
37 return new IsIterableWithSize<E>(sizeMatcher);
H A DIsMapWithSize.java14 public IsMapWithSize(Matcher<? super Integer> sizeMatcher) { argument
15 super(sizeMatcher, "a map with size", "map size");
29 * @param sizeMatcher
32 public static <K, V> Matcher<Map<? extends K, ? extends V>> aMapWithSize(Matcher<? super Integer> sizeMatcher) { argument
33 return new IsMapWithSize<K, V>(sizeMatcher);
/external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/
H A DMatchers.java708 * @param sizeMatcher
711 public static <E> org.hamcrest.Matcher<E[]> arrayWithSize(org.hamcrest.Matcher<? super java.lang.Integer> sizeMatcher) { argument
712 return org.hamcrest.collection.IsArrayWithSize.<E>arrayWithSize(sizeMatcher);
744 * @param sizeMatcher
747 public static <K, V> org.hamcrest.Matcher<java.util.Map<? extends K,? extends V>> aMapWithSize(org.hamcrest.Matcher<? super java.lang.Integer> sizeMatcher) { argument
748 return org.hamcrest.collection.IsMapWithSize.<K,V>aMapWithSize(sizeMatcher);
780 * @param sizeMatcher
783 public static <E> org.hamcrest.Matcher<java.util.Collection<? extends E>> hasSize(org.hamcrest.Matcher<? super java.lang.Integer> sizeMatcher) { argument
784 return org.hamcrest.collection.IsCollectionWithSize.<E>hasSize(sizeMatcher);
1025 * @param sizeMatcher
1028 iterableWithSize(org.hamcrest.Matcher<? super java.lang.Integer> sizeMatcher) argument
[all...]

Completed in 210 milliseconds