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

1234567891011>>

/external/skia/include/core/
H A DSkRefDict.h31 * If data is NULL, remove (if present) the entry matching name and call
42 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict
/external/guava/guava/src/com/google/common/collect/
H A DUnmodifiableIterator.java24 * An iterator that does not support {@link #remove}.
40 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.java37 * {@link #remove()}.
64 void remove(); method in interface:PeekingIterator
H A DForwardingConcurrentMap.java47 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
48 return delegate().remove(key, value);
H A DForwardingQueue.java65 public E remove() { method in class:ForwardingQueue
66 return delegate().remove();
110 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
111 * override {@link #remove}, you may wish to override {@link #poll} to forward
118 return remove();
/external/nist-sip/java/gov/nist/core/
H A DMultiMap.java35 public Object remove( Object key, Object item ); method in interface:MultiMap
H A DMultiValueMap.java8 public Object remove( K key, V item ); method in interface:MultiValueMap
/external/webkit/Source/WebCore/css/
H A DStyleList.cpp48 void StyleList::remove(unsigned position) function in class:WebCore::StyleList
52 m_children.remove(position);
/external/hamcrest/src/org/hamcrest/internal/
H A DArrayIterator.java25 public void remove() { method in class:ArrayIterator
26 throw new UnsupportedOperationException("cannot remove items from an array");
H A DSelfDescribingValueIterator.java22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
/external/webkit/Source/JavaScriptCore/wtf/
H A DDoublyLinkedList.h40 void remove(Node*);
81 template <typename Node> inline void DoublyLinkedList<Node>::remove(Node* node) function in class:WTF::DoublyLinkedList
/external/webkit/Source/WebCore/bindings/js/
H A DJSDOMApplicationCacheCustom.cpp73 JSValue JSDOMApplicationCache::remove(ExecState* exec) function in class:WebCore::JSDOMApplicationCache
81 impl()->remove(url, ec);
H A DJSHTMLSelectElementCustom.cpp35 JSValue JSHTMLSelectElement::remove(ExecState* exec) function in class:WebCore::JSHTMLSelectElement
39 // The remove function can take either an option object or the index of an option.
41 select.remove(option);
43 select.remove(exec->argument(0).toInt32(exec));
51 select->remove(index);
/external/webkit/Source/WebKit2/Shared/
H A DMutableDictionary.cpp51 void MutableDictionary::remove(const String& key) function in class:WebKit::MutableDictionary
53 m_map.remove(key);
/external/webkit/Tools/RebaselineQueueServer/model/
H A Dqueueentry.py45 def remove(builder_name, test): member in class:QueueEntry
/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.java67 public boolean remove(final URI uri) { method in class:RedirectLocations
68 return this.uris.remove(uri);
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
H A DListIntSet.java47 public void remove(int value) { method in class:ListIntSet
/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/icu4c/common/
H A Duset_imp.h52 USetRemove *remove; member in struct:USetAdder

Completed in 4427 milliseconds

1234567891011>>