Searched defs:remove (Results 1 - 25 of 593) sorted by relevance

1234567891011>>

/external/skia/src/core/
H A DSkRefDict.h30 * If data is nullptr, remove (if present) the entry matching name and call
41 void remove(const char name[]) { this->set(name, nullptr); } function in class:SkRefDict
/external/guava/guava/src/com/google/common/collect/
H A DUnmodifiableIterator.java24 * An iterator that does not support {@link #remove}.
42 public final void remove() { method in class:UnmodifiableIterator
H A DForwardingIterator.java52 public void remove() { method in class:ForwardingIterator
53 delegate().remove();
H A DPeekingIterator.java41 * {@link #remove()}.
68 void remove(); method in interface:PeekingIterator
H A DFilteredMultimapValues.java61 public boolean remove(@Nullable Object o) { method in class:FilteredMultimapValues
67 unfilteredItr.remove();
H A DForwardingConcurrentMap.java47 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
48 return delegate().remove(key, value);
H A DForwardingQueue.java64 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();
H A DTransformedIterator.java52 public final void remove() { method in class:TransformedIterator
53 backingIterator.remove();
/external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/internal/
H A DArrayIterator.java28 public void remove() { method in class:ArrayIterator
29 throw new UnsupportedOperationException("cannot remove items from an array");
H A DSelfDescribingValueIterator.java25 public void remove() { method in class:SelfDescribingValueIterator
26 values.remove();
/external/skia/infra/bots/
H A Dtest_utils.py37 def remove(self, fname): member in class:FileWriter
41 os.remove(fname)
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DBitSet.as189 // remove this element from this set
190 public function remove(el:int):void { function
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSetExtensions.cs71 public static bool remove<T>( this HashSet<T> set, T item ) method in class:Antlr.Runtime.JavaExtensions.SetExtensions
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DFastQueue.h52 /** Get and remove first element in queue */
53 public T remove() { function in class:FastQueue
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DBitSet.pm63 sub remove : Tests(2) { subroutine
69 $bs->remove(3);
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java72 public boolean remove(final URI uri) { method in class:RedirectLocations
73 return this.uris.remove(uri);
/external/autotest/frontend/client/src/autotest/common/
H A DJSONArrayList.java35 public T remove(int arg0) { method in class:JSONArrayList
/external/autotest/frontend/client/src/autotest/common/table/
H A DJSONObjectSet.java42 public boolean remove(Object arg0) { method in class:JSONObjectSet
43 return backingMap.remove(getKey(arg0)) != null;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
H A DPreFillQueue.java24 public PreFillType remove() { method in class:PreFillQueue
29 bitmapsPerType.remove(result);
30 keyList.remove(keyIndex);
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
H A DConcurrentMap.java30 boolean remove(Object key, Object value); method in interface:ConcurrentMap
/external/guice/core/src/com/google/inject/internal/
H A DConstructorInjectorStore.java62 boolean remove(InjectionPoint ip) { method in class:ConstructorInjectorStore
63 return cache.remove(ip);
H A DFailableCache.java59 boolean remove(K key) { method in class:FailableCache
60 return delegate.asMap().remove(key) != null;
/external/icu/icu4c/source/common/
H A Duset_imp.h54 USetRemove *remove; member in struct:USetAdder
/external/icu/icu4c/source/i18n/
H A Ddigitaffix.cpp31 DigitAffix::remove() { function in class:DigitAffix
32 fAffix.remove();
33 fAnnotations.remove();
57 fAnnotations.remove();
H A Dpluralaffix.cpp27 current->remove();
33 PluralAffix::remove() { function in class:PluralAffix

Completed in 499 milliseconds

1234567891011>>