HomeSort by relevance Sort by last modified time
    Searched full:addall (Results 26 - 50 of 864) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
DefaultSuggestionViewFactory.java 55 mViewTypes.addAll(mDefaultFactory.getSuggestionViewTypes());
57 mViewTypes.addAll(factory.getSuggestionViewTypes());
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListTest.java 57 @Override public boolean addAll(Collection<? extends T> collection) {
97 @Override public boolean addAll(
193 forward.addAll(EMPTY_LIST);
194 assertEquals("[addAll(Collection)]", getCalls());
198 forward.addAll(0, Collections.singleton("asdf"));
199 assertEquals("[addAll(int,Collection)]", getCalls());
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/features/
FeatureSummaryActivity.java 214 Collections.addAll(features, ALL_JELLY_BEAN_MR2_FEATURES);
217 Collections.addAll(features, ALL_JELLY_BEAN_FEATURES);
220 Collections.addAll(features, ALL_ICE_CREAM_SANDWICH_FEATURES);
223 Collections.addAll(features, ALL_HONEYCOMB_MR2_FEATURES);
226 Collections.addAll(features, ALL_HONEYCOMB_MR1_FEATURES);
229 Collections.addAll(features, ALL_HONEYCOMB_FEATURES);
232 Collections.addAll(features, ALL_GINGERBREAD_MR1_FEATURES);
235 Collections.addAll(features, ALL_GINGERBREAD_FEATURES);
238 Collections.addAll(features, ALL_FROYO_FEATURES);
241 Collections.addAll(features, ALL_ECLAIR_FEATURES)
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractSequentialListTest.java 57 * {@link java.util.AbstractSequentialList#addAll(int, java.util.Collection)}
66 al.addAll(c);
67 assertTrue("Should return true", al.addAll(2, c));
165 asl.addAll(0, strV);
171 asl.addAll(0, null);
193 asl.addAll(0, strV);
203 asl.addAll(0, strV);
210 asl.addAll(0, strV);
215 asl.addAll(-10, strV);
222 asl.addAll(1, strV)
    [all...]
ConcurrentModTest.java 223 // illegal call the subList's method addAll(int,Collection).
227 sub.addAll(1, c);
422 abstr.addAll(0, null);
429 abstr.addAll(0, c);
452 abstr.addAll(0, c);
484 abstr.addAll(0, c);
489 abstr.addAll(0, c);
495 abstr.addAll(0, c);
498 abstr.addAll(-1, c);
505 abstr.addAll(abstr.size() + 1, c)
    [all...]
ArrayListTest.java 132 * java.util.ArrayList#addAll(int, java.util.Collection)
135 // Test for method boolean java.util.ArrayList.addAll(int,
137 alist.addAll(50, alist);
155 alist.addAll(100, listWithNulls);
164 alist.addAll(205, listWithNulls);
168 alist.addAll(-1, listWithNulls);
175 alist.addAll(alist.size() + 1, listWithNulls);
182 alist.addAll(0, null);
194 // * java.util.ArrayList#addAll(int, java.util.Collection)
200 // obj.addAll((int) -1, (Collection) null)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
Collections2Test.java 326 assertFalse(Collections.addAll(l, new Object[] {}));
328 assertTrue(Collections.addAll(l, new Object[] { new Integer(1),
346 Collections.addAll(c1, arr1);
347 Collections.addAll(c2, arr2);
354 Collections.addAll(c1, arr1);
355 Collections.addAll(c2, arr2);
362 Collections.addAll(c1, arr1);
363 Collections.addAll(c2, arr2);
370 Collections.addAll(c1, arr1);
371 Collections.addAll(c2, arr2)
    [all...]
AbstractSequentialListTest.java 55 * @tests java.util.AbstractSequentialList#addAll(int, java.util.Collection)
64 al.addAll(c);
65 assertTrue("Should return true", al.addAll(2, c)); //$NON-NLS-1$
  /external/guava/guava/src/com/google/common/collect/
ForwardingCollection.java 37 * #addAll}, which can lead to unexpected behavior. In this case, you should
38 * override {@code addAll} as well, either providing your own implementation, or
99 public boolean addAll(Collection<? extends E> collection) {
100 return delegate().addAll(collection);
151 * A sensible definition of {@link #addAll} in terms of {@link #add}. If you
152 * override {@link #add}, you may wish to override {@link #addAll} to forward
158 return Iterators.addAll(this, collection.iterator());
ForwardingList.java 42 * #addAll}, which can lead to unexpected behavior. In this case, you should
43 * override {@code addAll} as well, either providing your own implementation, or
70 public boolean addAll(int index, Collection<? extends E> elements) {
71 return delegate().addAll(index, elements);
136 * A sensible default implementation of {@link #addAll(int, Collection)}, in
139 * #addAll(int, Collection)} to forward to this implementation.
  /libcore/luni/src/test/java/libcore/java/util/
OldCollectionsTest.java 358 public boolean addAll(Collection c) {
414 public boolean addAll(Collection c) {
464 assertFalse(Collections.addAll(l, new Object[] {}));
466 assertTrue(Collections.addAll(l, new Object[] { new Integer(1),
473 Collections.addAll(null,new Object[] { new Integer(1),
482 Collections.addAll(c, new Object[] { new Integer(1),
492 Collections.addAll(c, new String[] { "String",
500 Collections.addAll(c, new String[] { "String",
507 Collections.addAll(c, new String[] { "String",
521 Collections.addAll(c1, arr1)
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LookaheadSet.java 48 tokenTypeSet.addAll(s);
57 this.tokenTypeSet.addAll(other.tokenTypeSet);
61 this.tokenTypeSet.addAll(other.tokenTypeSet);
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableCollection.java 100 public final boolean addAll(Collection<? extends E> newElements) {
155 public Builder<E> addAll(Iterable<? extends E> elements) {
163 public Builder<E> addAll(Iterator<? extends E> elements) {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_ListTest.java 83 list.addAll(50, myList);
84 assertTrue("ListTest - a) addAll with index failed--did not insert",
86 assertTrue("ListTest - b) addAll with index failed--did not insert",
88 assertTrue("ListTest - c) addAll with index failed--did not insert",
91 "ListTest - d) addAll with index failed--did not move following elements",
94 "ListTest - e) addAll with index failed--affected previous elements",
  /libcore/support/src/test/java/tests/support/
Support_ListTest.java 83 list.addAll(50, myList);
84 assertTrue("ListTest - a) addAll with index failed--did not insert",
86 assertTrue("ListTest - b) addAll with index failed--did not insert",
88 assertTrue("ListTest - c) addAll with index failed--did not insert",
91 "ListTest - d) addAll with index failed--did not move following elements",
94 "ListTest - e) addAll with index failed--affected previous elements",
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
X509CRL2Test.java 49 extensionOids.addAll(pemCert.getCriticalExtensionOIDs());
50 extensionOids.addAll(pemCert.getNonCriticalExtensionOIDs());
X509CRLEntry2Test.java 49 extensionOids.addAll(pemCert.getCriticalExtensionOIDs());
50 extensionOids.addAll(pemCert.getNonCriticalExtensionOIDs());
X509Certificate2Test.java 47 extensionOids.addAll(pemCert.getCriticalExtensionOIDs());
48 extensionOids.addAll(pemCert.getNonCriticalExtensionOIDs());
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerInformationStore.java 90 results.addAll(match1);
97 results.addAll(match2);
  /external/mockito/src/org/mockito/internal/configuration/injection/
MockInjection.java 67 this.fields.addAll(checkItemsNotNull(fields, "fields"));
71 this.mocks.addAll(checkNotNull(mocks, "mocks"));
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
ListTestCaseNames.java 36 testCaseNames.addAll(getTestCaseNames((TestSuite) test));
54 testNames.addAll(getTestNames((TestSuite) test));
  /libcore/luni/src/test/java/com/android/org/bouncycastle/jce/provider/
CertBlacklistTest.java 223 bl.addAll(DEFAULT_PUBKEYS);
263 bl.addAll(DEFAULT_SERIALS);
276 bl.addAll(DEFAULT_PUBKEYS);
289 bl.addAll(DEFAULT_SERIALS);
303 bl.addAll(DEFAULT_PUBKEYS);
319 bl.addAll(DEFAULT_SERIALS);
371 bl.addAll(DEFAULT_SERIALS);
383 bl.addAll(DEFAULT_SERIALS);
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumSettings.java 88 mEnabledAlbums.addAll(validAlbums);
119 mEnabledAlbums.addAll(enabledAlbums);
  /dalvik/dexgen/src/com/android/dexgen/rop/annotation/
Annotations.java 55 result.addAll(a1);
56 result.addAll(a2);
76 result.addAll(annotations);
192 public void addAll(Annotations toAdd) {
  /dalvik/dx/src/com/android/dx/rop/annotation/
Annotations.java 55 result.addAll(a1);
56 result.addAll(a2);
76 result.addAll(annotations);
192 public void addAll(Annotations toAdd) {

Completed in 907 milliseconds

12 3 4 5 6 7 8 91011>>