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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dremove.c9 // 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
/external/chromium_org/third_party/skia/src/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/skia/src/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/chromium_org/chrome/browser/resources/local_ntp/
H A Dlocal_ntp_util.js40 Barrier.prototype.remove = function() {
/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
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildNode.h25 static void remove(Node& node, ExceptionState& exceptionState) function in class:blink::ChildNode
27 return node.remove(exceptionState);
H A DDocumentOrderedList.cpp67 void DocumentOrderedList::remove(const Node* node) function in class:blink::DocumentOrderedList
69 m_nodes.remove(const_cast<Node*>(node));
/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/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/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoaderSet.h47 void remove(const RefPtrWillBeRawPtr<ResourceLoader>& loader) { m_set.remove(loader); } function in class:blink::FINAL
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTRegionList.cpp66 bool VTTRegionList::remove(VTTRegion* region) function in class:blink::VTTRegionList
72 m_list.remove(index);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DEntry.cpp66 void Entry::remove(VoidCallback* successCallback, ErrorCallback* errorCallback) const function in class:blink::Entry
68 m_fileSystem->remove(this, successCallback, errorCallback);
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationWatchers.cpp36 void GeolocationWatchers::remove(int id) function in class:blink::GeolocationWatchers
42 m_notifierToIdMap.remove(iter->value);
43 m_idToNotifierMap.remove(iter);
46 void GeolocationWatchers::remove(GeoNotifier* notifier) function in class:blink::GeolocationWatchers
51 m_idToNotifierMap.remove(iter->value);
52 m_notifierToIdMap.remove(iter);
/external/chromium_org/third_party/WebKit/Source/web/
H A DOpenedFrameTracker.cpp31 void OpenedFrameTracker::remove(WebFrame* frame) function in class:blink::OpenedFrameTracker
33 m_openedFrames.remove(frame);
H A DWebGeolocationPermissionRequestManager.cpp55 bool WebGeolocationPermissionRequestManager::remove(const WebGeolocationPermissionRequest& permissionRequest, int& id) function in class:blink::WebGeolocationPermissionRequestManager
62 m_private->m_geolocationIdMap.remove(it);
63 m_private->m_idGeolocationMap.remove(id);
67 bool WebGeolocationPermissionRequestManager::remove(int id, WebGeolocationPermissionRequest& permissionRequest) function in class:blink::WebGeolocationPermissionRequestManager
74 m_private->m_idGeolocationMap.remove(it);
75 m_private->m_geolocationIdMap.remove(geolocation);
/external/chromium_org/third_party/bintrees/bintrees/
H A Dqavltree.pyx64 def remove(self, key): member in class:cAVLTree

Completed in 9541 milliseconds

1234567891011>>