HomeSort by relevance Sort by last modified time
    Searched refs:addAll (Results 1 - 25 of 800) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
BoundedTreeSet.java 45 public boolean addAll(final Collection<? extends SuggestedWordInfo> e) {
47 return super.addAll(e);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionAddAllTester.java 34 * A generic JUnit test which tests addAll operations on a collection. Can't be
47 assertFalse("addAll(nothing) should return false",
48 collection.addAll(emptyCollection()));
55 assertFalse("addAll(nothing) should return false or throw",
56 collection.addAll(emptyCollection()));
64 assertTrue("addAll(nonePresent) should return true",
65 collection.addAll(createDisjointCollection()));
72 collection.addAll(createDisjointCollection());
73 fail("addAll(nonePresent) should throw");
83 assertTrue("addAll(somePresent) should return true"
    [all...]
ListAddAllAtIndexTester.java 34 * A generic JUnit test which tests {@code addAll(int, Collection)} operations
47 assertTrue("addAll(n, allPresent) should return true",
48 getList().addAll(0, MinimalCollection.of(samples.e0)));
56 getList().addAll(0, MinimalCollection.of(samples.e0));
57 fail("addAll(n, allPresent) should throw");
66 assertTrue("addAll(n, allPresent) should return true",
67 getList().addAll(0, MinimalCollection.of(samples.e0, samples.e3)));
75 getList().addAll(0, MinimalCollection.of(samples.e0, samples.e3));
76 fail("addAll(n, allPresent) should throw");
85 assertFalse("addAll(n, nothing) should return false"
    [all...]
ListAddAllTester.java 27 * A generic JUnit test which tests {@code addAll(Collection)} operations on a
40 assertTrue("addAll(allPresent) should return true",
41 getList().addAll(MinimalCollection.of(samples.e0)));
49 getList().addAll(MinimalCollection.of(samples.e0));
50 fail("addAll(allPresent) should throw");
60 assertTrue("addAll(hasDuplicates) should return true",
61 getList().addAll(elementsToAdd));
SetAddAllTester.java 27 * A generic JUnit test which tests addAll operations on a set. Can't be
41 getSet().addAll(MinimalCollection.of(samples.e3, samples.e0)));
50 getSet().addAll(elementsToAdd));
58 getSet().addAll(MinimalCollection.of(samples.e0)));