HomeSort by relevance Sort by last modified time
    Searched defs:remove (Results 201 - 225 of 3610) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultimapAsMapTester.java 89 assertThat(multimap().asMap().remove(sampleKeys().e0)).iteratesAs(sampleValues().e0);
131 assertTrue(asMapEntrySet.remove(asMapEntry0));
145 asMapEntryItr.remove();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionRemoveTester.java 36 * A generic JUnit test which tests {@code remove} operations on a collection.
49 assertTrue("remove(present) should return true",
50 collection.remove(samples.e0));
51 assertEquals("remove(present) should decrease a collection's size by one.",
62 assertTrue(collection.remove(samples.e0));
72 assertFalse("remove(notPresent) should return false",
73 collection.remove(samples.e3));
83 assertTrue("remove(null) should return true", collection.remove(null));
84 assertEquals("remove(present) should decrease a collection's size by one."
    [all...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/
VisitorList.java 138 public void remove() { method
139 itr.remove();
170 public void remove() { method
171 itr.remove();
207 public boolean remove(Object elem) {
208 return innerList.remove(new EqualsHashcodeOverridingFacade((N) elem));
212 public N remove(int index) {
213 return innerList.remove(index).overridden;
220 if (remove(elem))
VisitorSet.java 106 public void remove() { method
107 itr.remove();
113 public boolean remove(Object elem) { method
114 return innerSet.remove(new EqualsHashcodeOverridingFacade((N) elem));
121 if (remove(elem))
  /external/javassist/src/main/javassist/bytecode/
AttributeInfo.java 213 static synchronized void remove(ArrayList list, String name) { method in class:AttributeInfo
221 iterator.remove();
  /external/mockito/src/main/java/org/mockito/internal/util/concurrent/
WeakConcurrentSet.java 52 * @param value The value to remove from the set.
55 public boolean remove(V value) { method in class:WeakConcurrentSet
56 return target.remove(value);
118 public void remove() { method in class:WeakConcurrentSet.ReducingIterator
119 iterator.remove();
  /external/protobuf/java/core/src/test/java/com/google/protobuf/
UnmodifiableLazyStringListTest.java 76 list.remove(0);
101 byteStringList.remove(0);
138 iter.remove();
153 byteIter.remove();
172 iter.remove();
199 byteIter.remove();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue103/
FakeMap.java 110 public V remove(Object arg0) { method in class:FakeMap
114 iter.remove();
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/
ConfigurationMap.java 40 public WifiConfiguration remove(int netID) { method in class:ConfigurationMap
41 WifiConfiguration config = mPerID.remove(netID);
46 mPerIDForCurrentUser.remove(netID);
52 scanResultMatchInfoEntries.remove();
  /libcore/jsr166-tests/src/test/java/jsr166/
ThreadLocalTest.java 43 * remove causes next access to return initial value
49 tl.remove();
54 * remove in InheritableThreadLocal causes next access to return
61 itl.remove();
  /libcore/ojluni/src/main/java/java/util/
AbstractCollection.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
40 * <tt>iterator</tt> method must additionally implement its <tt>remove</tt>
270 * from the collection using the iterator's remove method.
274 * collection's iterator method does not implement the <tt>remove</tt>
281 public boolean remove(Object o) { method in class:AbstractCollection
286 it.remove();
293 it.remove();
355 * this collection with the iterator's <tt>remove</tt> method.
359 * <tt>iterator</tt> method does not implement the <tt>remove</tt> method
367 * @see #remove(Object
    [all...]
  /cts/tools/dasm/src/java_cup/
terminal_set.java 150 /** Remove a terminal if it is in the set.
153 public void remove(terminal sym) method in class:terminal_set
  /dalvik/dx/src/com/android/multidex/
ArchivePathElement.java 92 public void remove() { method
  /development/tools/mkstubs/src/com/android/mkstubs/
AsmAnalyzer.java 91 // remove if we don't keep it
93 log.debug("- Remove class " + key);
94 it.remove();
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
misc.py 24 def remove(self, elt): member in class:Set
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
ftpmirror.py 13 -r: remove local files/directories no longer pertinent
242 # Remove files from info that are no longer remote
254 # Remove local files that are no longer in the remote directory
280 remove(fullname)
310 # Helper to remove a file or directory tree
311 def remove(fullname): function
319 if not remove(os.path.join(fullname, name)):
326 print "Can't remove local directory %r: %s" % (fullname, msg)
332 print "Can't remove local file %r: %s" % (fullname, msg)
  /external/annotation-tools/asmx/src/org/objectweb/asm/tree/analysis/
SmallSet.java 82 public void remove() { method in class:SmallSet
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
LookaheadSet.java 86 public void remove(int a) { method in class:LookaheadSet
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntSet.java 76 /** remove this element from this set */
77 void remove(int el); method in interface:IntSet
  /external/apache-http/src/org/apache/http/impl/client/
BasicCookieStore.java 92 // first remove any old cookie that is equivalent
95 it.remove();
148 it.remove();
  /external/apache-http/src/org/apache/http/message/
BasicListHeaderIterator.java 191 public void remove() method in class:BasicListHeaderIterator
195 throw new IllegalStateException("No header to remove.");
197 this.allHeaders.remove(this.lastIndex);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
MemoryCache.java 44 Resource<?> remove(Key key); method in interface:MemoryCache
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillQueue.java 24 public PreFillType remove() { method in class:PreFillQueue
29 bitmapsPerType.remove(result);
30 keyList.remove(keyIndex);
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 83 @Override public final void remove() { method in class:AbstractIterator
  /external/guava/guava/src/com/google/common/collect/
HashBasedTable.java 34 * #columnMap()} have iterators that don't support {@code remove()}. Otherwise,
142 @Override public V remove( method in class:HashBasedTable
144 return super.remove(rowKey, columnKey);

Completed in 1218 milliseconds

1 2 3 4 5 6 7 891011>>