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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
remove.c 9 // Glibc's remove(3) and unlink(2) entry points are not yet hooked up
12 // TODO(sbc): remove this once glibc plumbing is in place for remove/unlink
14 int remove(const char* path) { function
  /bionic/libc/upstream-freebsd/lib/libc/stdio/
remove.c 34 static char sccsid[] = "@(#)remove.c 8.1 (Berkeley) 6/4/93";
45 remove(const char *file) function
  /external/chromium_org/third_party/WebKit/Source/core/dom/
StyleSheetScopingNodeList.cpp 47 m_scopingNodesRemoved->remove(node);
50 void StyleSheetScopingNodeList::remove(ContainerNode* node) function in class:WebCore::StyleSheetScopingNodeList
55 // If the node is still working as a scoping node, we cannot remove.
59 m_scopingNodes->remove(node);
DocumentOrderedList.cpp 67 void DocumentOrderedList::remove(const Node* node) function in class:WebCore::DocumentOrderedList
69 m_nodes.remove(const_cast<Node*>(node));
  /external/chromium_org/third_party/skia/src/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/skia/src/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/chromium_org/third_party/WebKit/Source/modules/filesystem/
Entry.cpp 67 void Entry::remove(PassOwnPtr<VoidCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const function in class:WebCore::Entry
69 m_fileSystem->remove(this, successCallback, errorCallback);
EntrySync.cpp 74 void EntrySync::remove(ExceptionState& exceptionState) const function in class:WebCore::EntrySync
77 m_fileSystem->remove(this, helper.successCallback(), helper.errorCallback(), DOMFileSystemBase::Synchronous);
  /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
  /frameworks/base/core/java/android/view/
ViewGroupOverlay.java 59 * @see #remove(View)
71 * @see ViewOverlay#remove(Drawable)
73 public void remove(View view) { method in class:ViewGroupOverlay
74 mOverlayViewGroup.remove(view);
  /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 * {@code putIfAbsent}, {@code remove}, and {@code replace} methods.
66 * map.remove(key);
76 * @throws UnsupportedOperationException if the {@code remove} operation
85 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/chromium_org/third_party/WebKit/Source/core/animation/
AnimationStack.h 47 void remove(Animation* animation) function in class:WebCore::AnimationStack
51 m_activeAnimations.remove(position);
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceLoaderSet.h 44 void remove(const RefPtr<ResourceLoader>& loader) { m_set.remove(loader); } function in class:WebCore::ResourceLoaderSet
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTRegionList.cpp 66 bool VTTRegionList::remove(VTTRegion* region) function in class:WebCore::VTTRegionList
72 m_list.remove(index);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleCustomFilterProgramCache.cpp 76 void StyleCustomFilterProgramCache::remove(StyleCustomFilterProgram* program) function in class:WebCore::StyleCustomFilterProgramCache
80 m_cache.remove(iter);

Completed in 497 milliseconds

1 2 3 4 5 6 7 8 91011>>