Home
last modified time | relevance | path

Searched refs:hasItems (Results 1 – 7 of 7) sorted by relevance

/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
DStringArrayResourceLoaderTest.java12 import static org.hamcrest.core.IsCollectionContaining.hasItems;
37 …assertThat(Arrays.asList(stringArrayResourceLoader.getArrayValue(R.array.items)), hasItems("foo", … in testStringsAreResolved()
42 …ays.asList(stringArrayResourceLoader.getArrayValue(R.array.greetings)), hasItems("hola", "Hello")); in testStringsAreWithReferences()
47 …gArrayResourceLoader.getArrayValue(android.R.array.emailAddressTypes)), hasItems("Home", "Work", "… in shouldAddAndroidToSystemStringArrayName()
48 …st(stringArrayResourceLoader.getArrayValue(R.array.emailAddressTypes)), hasItems("Doggy", "Catty")… in shouldAddAndroidToSystemStringArrayName()
/external/junit/src/org/junit/matchers/
DJUnitMatchers.java34 public static <T> org.hamcrest.Matcher<java.lang.Iterable<T>> hasItems(T... elements) { in hasItems() method in JUnitMatchers
35 return IsCollectionContaining.hasItems(elements); in hasItems()
44 …public static <T> org.hamcrest.Matcher<java.lang.Iterable<T>> hasItems(org.hamcrest.Matcher<? exte… in hasItems() method in JUnitMatchers
45 return IsCollectionContaining.hasItems(elementMatchers); in hasItems()
/external/hamcrest/library/src/org/hamcrest/collection/
DIsCollectionContaining.java46 public static <T> Matcher<Iterable<T>> hasItems(Matcher<? extends T>... elementMatchers) { in hasItems() method in IsCollectionContaining
56 public static <T> Matcher<Iterable<T>> hasItems(T... elements) { in hasItems() method in IsCollectionContaining
/external/junit/src/org/junit/internal/matchers/
DIsCollectionContaining.java48 public static <T> Matcher<Iterable<T>> hasItems(Matcher<? extends T>... elementMatchers) { in hasItems() method in IsCollectionContaining
58 public static <T> Matcher<Iterable<T>> hasItems(T... elements) { in hasItems() method in IsCollectionContaining
/external/hamcrest/library/src/org/hamcrest/
DMatchers.java181 …public static <T> org.hamcrest.Matcher<java.lang.Iterable<T>> hasItems(org.hamcrest.Matcher<? exte… in hasItems() method in Matchers
182 return org.hamcrest.collection.IsCollectionContaining.hasItems(elementMatchers); in hasItems()
185 public static <T> org.hamcrest.Matcher<java.lang.Iterable<T>> hasItems(T... elements) { in hasItems() method in Matchers
186 return org.hamcrest.collection.IsCollectionContaining.hasItems(elements); in hasItems()
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/utils/
DSelection.java58 public boolean hasItems () { in hasItems() method in Selection
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
DTree.java71 if (selection.getMultiple() && selection.hasItems() && UIUtils.shift()) { in initialize()