Searched refs:remove (Results 126 - 150 of 1847) sorted by relevance

1234567891011>>

/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
H A DSentinelLinkedList.h51 static void remove(Node*);
95 template <typename Node> inline void SentinelLinkedList<Node>::remove(Node* node) function in class:WTF::SentinelLinkedList
/external/webkit/Source/WebCore/accessibility/
H A DAccessibilityMenuListPopup.cpp113 m_menuList->renderer()->document()->axObjectCache()->remove(child->axObjectID());
114 m_children.remove(i - 1);
/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);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLSelectElementCustom.cpp68 INC_STATS("DOM.HTMLSelectElement.remove");
77 imp->remove(element->index());
81 imp->remove(toInt32(args[0]));
/external/webkit/Source/WebCore/fileapi/
H A DEntrySync.idl47 void remove() raises (FileException);
/external/webkit/Source/WebCore/history/mac/
H A DHistoryItemMac.mm56 m_transientProperties->remove(key);
/external/webkit/Source/WebCore/html/
H A DDOMSettableTokenList.cpp70 void DOMSettableTokenList::remove(const AtomicString& token, ExceptionCode& ec) function in class:WebCore::DOMSettableTokenList
80 m_tokens.remove(token);
H A DDOMTokenList.idl35 void remove(in DOMString token) raises(DOMException);
H A DDataGridColumnList.idl40 void remove(in DataGridColumn column);
H A DHTMLOptionsCollection.cpp70 void HTMLOptionsCollection::remove(int index) function in class:WebCore::HTMLOptionsCollection
72 static_cast<HTMLSelectElement*>(base())->remove(index);
H A DHTMLOptionsCollection.idl34 [Custom] void remove(in unsigned long index);
/external/webkit/Source/WebCore/page/
H A DPluginHalter.cpp70 m_plugins.remove(obj);
100 m_plugins.remove(plugins[i]);
/external/webkit/Source/WebCore/platform/text/
H A DAtomicStringKeyedMRUCache.h48 m_cache.remove(foundIndex);
56 m_cache.remove(0);
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DGeolocationPermissionClientQt.cpp74 m_pendingPermissionRequests.remove(webFrame);
94 m_pendingPermissionRequests.remove(webFrame);
/external/webrtc/test/testsupport/
H A Dframe_reader_unittest.cc31 std::remove(kInputFilename.c_str());
44 std::remove(kInputFilename.c_str());
/external/guava/guava/src/com/google/common/collect/
H A DAbstractBiMap.java110 inverse().remove(value);
127 @Override public V remove(Object key) { method in class:AbstractBiMap
132 V oldValue = delegate.remove(key);
138 inverse.delegate.remove(oldValue);
177 @Override public boolean remove(Object key) { method in class:AbstractBiMap.KeySet
208 public void remove() {
211 iterator.remove();
249 @Override public void remove() {
250 iterator.remove();
287 @Override public boolean remove(Objec method in class:AbstractBiMap.EntrySet
[all...]
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractQueueTest.java56 public void remove() {
243 * @tests java.util.AbstractQueue#remove()
247 queue.remove();
256 * @tests java.util.AbstractQueue#remove()
263 assertEquals('a', queue.remove());
264 assertEquals('b', queue.remove());
266 queue.remove();
H A DArrayDequeTest.java429 * @tests {@link java.util.ArrayDeque#remove()}
436 assertEquals(testObjOne, testQue.remove());
438 assertEquals(testObjTwo, testQue.remove());
439 assertEquals(testObjThree, testQue.remove());
442 testQue.remove();
561 testQue.remove();
562 testQue.remove();
580 testQue.remove();
581 testQue.remove();
600 result.remove();
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractCollectionTest.java74 assertFalse(c.remove("a"));
80 assertTrue(c.remove("a"));
96 c.remove("a");
169 c2.remove("b");
170 c2.remove("b");
H A DMapsTransformValuesTest.java144 assertEquals("1", map.remove("a"));
145 assertNull(map.remove("b"));
184 underlying.remove("c");
204 map.remove("a");
208 keys.remove("b");
213 keyIterator.remove();
217 values.remove("4");
222 valueIterator.remove();
227 entries.remove(firstEntry);
232 entryIterator.remove();
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DGameObjectManager.java143 public void remove(BaseObject object) { method in class:GameObjectManager
144 super.remove(object);
152 remove(object);
163 objects.remove(i);
169 mInactiveObjects.remove(j);
/external/chromium/chrome/browser/resources/
H A Dcookies_tree.js45 remove: function(child) {
46 TreeItem.prototype.remove.call(this, child);
114 remove: function(child) {
115 Tree.prototype.remove.call(this, child);
148 * @param {int} start Start index of nodes to remove.
149 * @param {int} count Number of nodes to remove.
155 parent.remove(parent.items[start]);
/external/chromium/chrome/browser/resources/ntp4/
H A Dgrabber.js192 this.element.classList.remove(Grabber.GRAB_CLASS);
198 this.element.classList.remove(Grabber.PRESSED_CLASS);
211 this.element.classList.remove(Grabber.PRESSED_CLASS);
256 this.element.classList.remove(Grabber.PRESSED_CLASS);
334 this.element.classList.remove(Grabber.DRAGGING_CLASS);
/external/chromium/chrome/browser/resources/touch_ntp/
H A Dgrabber.js192 this.element.classList.remove(Grabber.GRAB_CLASS);
198 this.element.classList.remove(Grabber.PRESSED_CLASS);
211 this.element.classList.remove(Grabber.PRESSED_CLASS);
256 this.element.classList.remove(Grabber.PRESSED_CLASS);
334 this.element.classList.remove(Grabber.DRAGGING_CLASS);

Completed in 443 milliseconds

1234567891011>>