HomeSort by relevance Sort by last modified time
    Searched defs:remove (Results 1 - 25 of 1164) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/stdio/
remove.c 1 /* $OpenBSD: remove.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */
40 remove(const char *file) function
  /external/skia/include/core/
SkRefDict.h 31 * If data is NULL, remove (if present) the entry matching name and call
40 * Remove the matching entry (if found) and unref its data.
42 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict
45 * Remove all entries, and unref() their associated data.
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
ArrayIterator.java 25 public void remove() { method in class:ArrayIterator
26 throw new UnsupportedOperationException("cannot remove items from an array");
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 35 public Object remove( Object key, Object item ); method in interface:MultiMap
MultiValueMap.java 8 public Object remove( K key, V item ); method in interface:MultiValueMap
  /external/webkit/Source/WebCore/css/
StyleList.cpp 48 void StyleList::remove(unsigned position) function in class:WebCore::StyleList
52 m_children.remove(position);
  /external/guava/guava/src/com/google/common/collect/
UnmodifiableIterator.java 24 * An iterator that does not support {@link #remove}.
40 public final void remove() { method in class:UnmodifiableIterator
ForwardingConcurrentMap.java 47 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
48 return delegate().remove(key, value);
ForwardingIterator.java 52 public void remove() { method in class:ForwardingIterator
53 delegate().remove();
PeekingIterator.java 37 * {@link #remove()}.
64 void remove(); method in interface:PeekingIterator
  /external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/
ConcurrentMap.java 30 boolean remove(Object key, Object value); method in interface:ConcurrentMap
  /external/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 35 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);
JSDOMApplicationCacheCustom.cpp 73 JSValue JSDOMApplicationCache::remove(ExecState* exec) function in class:WebCore::JSDOMApplicationCache
81 impl()->remove(url, ec);
ScriptObject.cpp 101 bool ScriptGlobalObject::remove(ScriptState* scriptState, const char* name) function in class:WebCore::ScriptGlobalObject
  /external/webkit/Source/WebCore/bindings/v8/
ScriptObject.cpp 97 bool ScriptGlobalObject::remove(ScriptState* scriptState, const char* name) function in class:WebCore::ScriptGlobalObject
  /external/webkit/Source/WebCore/fileapi/
Entry.cpp 75 void Entry::remove(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const function in class:WebCore::Entry
78 if (!m_fileSystem->remove(this, successCallback, errorCallback))
EntrySync.cpp 87 void EntrySync::remove(ExceptionCode& ec) const function in class:WebCore::EntrySync
91 if (!m_fileSystem->remove(this, helper.successCallback(), helper.errorCallback())) {
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
Looper_Accessor.java 25 Looper.sThreadLocal.remove();
  /libcore/luni/src/main/java/java/util/
Iterator.java 60 * if {@code next} has not been called, or {@code remove} has
63 public void remove(); method in interface:Iterator
  /libcore/luni/src/main/java/java/util/concurrent/
ConcurrentMap.java 16 * <tt>putIfAbsent</tt>, <tt>remove</tt>, and <tt>replace</tt> methods.
66 * map.remove(key);
74 * @throws UnsupportedOperationException if the <tt>remove</tt> operation
81 boolean remove(Object key, Object value); method in interface:ConcurrentMap
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 33 * @param trim true to remove reference objects from the iterable after
50 delegate.remove();
70 public void remove() { method
74 delegate.remove();
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeOrdering.h 39 void remove(const SDNode *Node) { function in class:llvm::SDNodeOrdering
  /external/webkit/Source/JavaScriptCore/wtf/
DoublyLinkedList.h 40 void remove(Node*);
81 template <typename Node> inline void DoublyLinkedList<Node>::remove(Node* node) function in class:WTF::DoublyLinkedList
  /external/webkit/Source/WebCore/html/
HTMLOptionsCollection.cpp 70 void HTMLOptionsCollection::remove(int index) function in class:WebCore::HTMLOptionsCollection
72 static_cast<HTMLSelectElement*>(base())->remove(index);

Completed in 669 milliseconds

1 2 3 4 5 6 7 8 91011>>