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

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/support/src/test/java/tests/support/
Support_CollectionTest.java 55 // remove
56 assertTrue("CollectionTest - a) remove did not work", col
57 .remove(new Integer(101)));
58 assertTrue("CollectionTest - b) remove did not work", !col
70 col.remove(new Integer(101));
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 72 public boolean remove(final URI uri) { method in class:RedirectLocations
73 return this.uris.remove(uri);
  /external/apache-http/src/org/apache/http/message/
BasicHeaderIterator.java 179 public void remove() method in class:BasicHeaderIterator
  /external/autotest/client/bin/
test_config.py 93 def remove(self, section, option): member in class:config_loader
95 Remove an option.
  /external/autotest/frontend/client/src/autotest/common/
JSONArrayList.java 35 public T remove(int arg0) { method in class:JSONArrayList
  /external/autotest/frontend/client/src/autotest/common/table/
JSONObjectSet.java 42 public boolean remove(Object arg0) { method in class:JSONObjectSet
43 return backingMap.remove(getKey(arg0)) != null;
  /external/clang/include/clang/ARCMigrate/
ARCMT.h 119 virtual void remove(CharSourceRange range) { } function in class:clang::arcmt::MigrationProcess::RewriteListener
  /external/emma/core/java12/com/vladium/jcd/cls/
IAttributeCollection.java 95 Attribute_info remove (int offset); method in interface:IAttributeCollection
IMethodCollection.java 101 Method_info remove (int offset); method in interface:IMethodCollection
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
MemoryCacheAdapter.java 29 public Resource<?> remove(Key key) { method in class:MemoryCacheAdapter
  /external/guava/guava/src/com/google/common/collect/
ForwardingQueue.java 64 public E remove() { method in class:ForwardingQueue
65 return delegate().remove();
109 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
110 * override {@link #remove}, you may wish to override {@link #poll} to forward
117 return remove();
StandardTable.java 50 * #columnMap()} have iterators that don't support {@code remove()}. Otherwise,
144 @Override public V remove( method in class:StandardTable
153 V value = map.remove(columnKey);
155 backingMap.remove(rowKey);
166 V value = entry.getValue().remove(column);
170 iterator.remove();
182 /** Remove a row key / column key / value mapping, if present. */
185 remove(rowKey, columnKey); method
246 @Override public void remove() { method in class:StandardTable.CellIterator
247 columnIterator.remove();
312 public V remove(Object key) { method in class:StandardTable.Row
377 public void remove() { method in class:StandardTable
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetEntrySetTester.java 65 iterator.remove();
67 "multiset isn't empty after multiset.entrySet() iterator.remove()",
75 "multiset.entrySet.remove(presentEntry) returned false",
76 getMultiset().entrySet().remove(
87 "multiset.entrySet.remove(missingEntry) returned true",
88 getMultiset().entrySet().remove(
111 "multiset.entrySet.remove(missingEntry) returned true",
151 assertTrue(getMultiset().remove(samples.e0));
153 assertTrue(getMultiset().elementSet().remove(samples.e0));
167 itr.remove();
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractBiMapTest.java 42 iterator.remove();
44 iterator.remove();
59 iterator.remove();
61 iterator.remove();
UnmodifiableIteratorTest.java 55 iterator.remove();
  /external/guice/core/src/com/google/inject/internal/
ConstructorInjectorStore.java 62 boolean remove(InjectionPoint ip) { method in class:ConstructorInjectorStore
63 return cache.remove(ip);
FailableCache.java 59 boolean remove(K key) { method in class:FailableCache
60 return delegate.asMap().remove(key) != null;
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
IntHashtable.java 30 table.remove(new Integer(key));
IntStringHashtable.java 30 table.remove(new Integer(key));
LongHashtable.java 29 table.remove(new Long(key));
  /external/icu/icu4c/source/common/unicode/
enumset.h 41 inline void remove(T toRemove) { set(toRemove, 0); } function in class:EnumSet
  /external/icu/icu4c/source/common/
uset_imp.h 54 USetRemove *remove; member in struct:USetAdder
  /external/icu/icu4c/source/i18n/
digitaffix.cpp 31 DigitAffix::remove() { function in class:DigitAffix
32 fAffix.remove();
33 fAnnotations.remove();
57 fAnnotations.remove();
nfrlist.h 54 NFRule* remove(uint32_t index) { function in class:NFRuleList
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
IntHashtable.java 27 table.remove(new Integer(key));

Completed in 284 milliseconds

1 2 34 5 6 7 8 91011>>