HomeSort by relevance Sort by last modified time
    Searched full:removeall (Results 1 - 25 of 884) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRemoveAllTester.java 33 * A generic JUnit test which tests {@code removeAll} operations on a
46 assertFalse("removeAll(emptyCollection) should return false",
47 collection.removeAll(MinimalCollection.of()));
53 assertFalse("removeAll(disjointCollection) should return false",
54 collection.removeAll(MinimalCollection.of(samples.e3)));
61 assertTrue("removeAll(intersectingCollection) should return true",
62 collection.removeAll(MinimalCollection.of(samples.e0)));
69 assertTrue("removeAll(intersectingCollection) should return true",
70 collection.removeAll(MinimalCollection.of(samples.e0, samples.e3)));
75 * Trigger the other.size() >= this.size() case in AbstractSet.removeAll()
    [all...]
ListRemoveAllTester.java 28 * A generic JUnit test which tests removeAll operations on a list. Can't be
45 assertTrue("removeAll(intersectingCollection) should return true",
46 getList().removeAll(MinimalCollection.of(duplicate)));
47 assertFalse("after removeAll(e), a collection should not contain e even " +
  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 74 // removeAll
75 assertTrue("CollectionTest - a) removeAll failed", col
76 .removeAll(myCollection));
77 assertTrue("CollectionTest - b) removeAll failed", !col
78 .removeAll(myCollection)); // should not change the colletion
80 assertTrue("CollectionTest - c) removeAll failed", !col
82 assertTrue("CollectionTest - d) removeAll failed", !col
  /libcore/support/src/test/java/tests/support/
Support_CollectionTest.java 73 // removeAll
74 assertTrue("CollectionTest - a) removeAll failed", col
75 .removeAll(myCollection));
76 assertTrue("CollectionTest - b) removeAll failed", !col
77 .removeAll(myCollection)); // should not change the colletion
79 assertTrue("CollectionTest - c) removeAll failed", !col
81 assertTrue("CollectionTest - d) removeAll failed", !col
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
  /external/chromium_org/base/
scoped_observer.h 23 RemoveAll();
40 void RemoveAll() {
  /external/chromium_org/chrome/browser/prefs/
synced_pref_change_registrar.cc 26 RemoveAll();
46 void SyncedPrefChangeRegistrar::RemoveAll() {
  /external/chromium_org/third_party/skia/src/core/
SkRefDict.cpp 22 this->removeAll();
80 void SkRefDict::removeAll() {
  /external/skia/src/core/
SkRefDict.cpp 22 this->removeAll();
80 void SkRefDict::removeAll() {
  /external/chromium_org/chrome/browser/sync/glue/
bookmark_data_type_controller.cc 57 registrar_.RemoveAll();
83 registrar_.RemoveAll();
110 registrar_.RemoveAll();
  /external/guava/guava-tests/test/com/google/common/collect/
ConstrainedMapImplementsMapTest.java 62 // GWT's HashMap.entrySet().removeAll(null) doesn't throws NPE.
78 // GWT's HashMap.keySet().removeAll(null) doesn't throws NPE.
94 // GWT's HashMap.values().removeAll(null) doesn't throws NPE.
ForMapMultimapAsMapImplementsMapTest.java 56 // GWT's HashMap.entrySet().removeAll(null) doesn't throws NPE.
72 // GWT's HashMap.keySet().removeAll(null) doesn't throws NPE.
88 // GWT's HashMap.values().removeAll(null) doesn't throws NPE.
SubMapMultimapAsMapImplementsMapTest.java 74 // GWT's TreeMap.entrySet().removeAll(null) doesn't throws NPE.
90 // GWT's TreeMap.keySet().removeAll(null) doesn't throws NPE.
106 // GWT's TreeMap.values().removeAll(null) doesn't throws NPE.
ArrayListMultimapTest.java 52 * Confirm that removeAll() returns a List implementing RandomAccess.
58 assertTrue(multimap.removeAll("foo") instanceof RandomAccess);
59 assertTrue(multimap.removeAll("bar") instanceof RandomAccess);
ForwardingSortedMapImplementsMapTest.java 98 // GWT's TreeMap.entrySet().removeAll(null) doesn't throws NPE.
114 // GWT's TreeMap.keySet().removeAll(null) doesn't throws NPE.
130 // GWT's TreeMap.values().removeAll(null) doesn't throws NPE.
  /external/chromium_org/chrome/browser/extensions/api/context_menus/
context_menus_api.h 47 DECLARE_EXTENSION_FUNCTION("contextMenus.removeAll", CONTEXTMENUS_REMOVEALL)
  /external/chromium_org/chrome/browser/extensions/
state_store_notification_observer.cc 30 registrar_.RemoveAll();
  /external/chromium_org/chrome/browser/
remove_rows_table_model.h 25 virtual void RemoveAll() = 0;
  /external/guava/guava/src/com/google/common/collect/
ForwardingListMultimap.java 47 @Override public List<V> removeAll(@Nullable Object key) {
48 return delegate().removeAll(key);
ForwardingSetMultimap.java 49 @Override public Set<V> removeAll(@Nullable Object key) {
50 return delegate().removeAll(key);
ForwardingSortedSetMultimap.java 48 @Override public SortedSet<V> removeAll(@Nullable Object key) {
49 return delegate().removeAll(key);
  /external/replicaisland/src/com/replica/replicaisland/
BufferLibrary.java 33 removeAll();
40 public void removeAll() {
  /sdk/eclipse/plugins/com.android.ide.eclipse.hierarchyviewer/src/com/android/ide/eclipse/hierarchyviewer/views/
PixelPerfectTreeView.java 48 mm.removeAll();
52 tm.removeAll();
  /external/chromium_org/sync/internal_api/test/
fake_sync_manager.cc 100 empty_types.RemoveAll(progress_marker_types_);
111 progress_marker_types_.RemoveAll(partial_types);
137 success_types.RemoveAll(configure_fail_types_);
159 initial_sync_ended_types_.RemoveAll(to_purge);
160 progress_marker_types_.RemoveAll(to_purge);
  /external/chromium_org/third_party/skia/src/utils/
SkCanvasStack.cpp 14 this->removeAll();
44 void SkCanvasStack::removeAll() {
46 this->INHERITED::removeAll();

Completed in 891 milliseconds

1 2 3 4 5 6 7 8 91011>>