HomeSort by relevance Sort by last modified time
    Searched full:removeall (Results 1 - 25 of 524) 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
  /external/chromium/chrome/browser/ui/cocoa/
table_model_array_controller.h 22 // RemoveRows and RemoveAll as actions (remove: and removeAll:).
49 - (IBAction)removeAll:(id)sender;
  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 92 as.removeAll(null);
100 as.removeAll(c);
108 as.removeAll(c);
  /external/skia/legacy/src/core/
SkRefDict.cpp 22 this->removeAll();
79 void SkRefDict::removeAll() {
  /external/skia/src/core/
SkRefDict.cpp 22 this->removeAll();
79 void SkRefDict::removeAll() {
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
RequestHeaders.java 202 headers.removeAll("Transfer-Encoding");
210 headers.removeAll("Content-Length");
218 headers.removeAll("User-Agent");
226 headers.removeAll("Host");
234 headers.removeAll("Connection");
242 headers.removeAll("Accept-Encoding");
250 headers.removeAll("Content-Type");
258 headers.removeAll("If-Modified-Since");
267 headers.removeAll("If-None-Match");
  /libcore/luni/src/main/java/libcore/net/http/
RequestHeaders.java 204 headers.removeAll("Transfer-Encoding");
212 headers.removeAll("Content-Length");
220 headers.removeAll("User-Agent");
228 headers.removeAll("Host");
236 headers.removeAll("Connection");
244 headers.removeAll("Accept-Encoding");
252 headers.removeAll("Content-Type");
260 headers.removeAll("If-Modified-Since");
269 headers.removeAll("If-None-Match");
  /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/chrome/browser/
remove_rows_table_model.h 26 virtual void RemoveAll() = 0;
  /external/chromium/chrome/browser/prefs/
pref_change_registrar.cc 17 RemoveAll();
55 void PrefChangeRegistrar::RemoveAll() {
pref_change_registrar_unittest.cc 96 TEST_F(PrefChangeRegistrarTest, RemoveAll) {
112 registrar.RemoveAll();
115 // Explicitly check the expectations now to make sure that the RemoveAll
  /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/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 68 void removeAll(iterator);
69 void removeAll(const ValueType&);
177 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(const ValueType& value)
179 removeAll(find(value));
183 inline void HashCountedSet<Value, HashFunctions, Traits>::removeAll(iterator it)
  /external/chromium/chrome/browser/extensions/
external_policy_extension_loader.cc 94 notification_registrar_.RemoveAll();
95 pref_change_registrar_.RemoveAll();

Completed in 1738 milliseconds

1 2 3 4 5 6 7 8 91011>>