HomeSort by relevance Sort by last modified time
    Searched refs:remove (Results 26 - 50 of 2751) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/js/resources/
select-options-remove.js 1 description("This test checks the behavior of the remove() method on the select.options object.");
6 debug("1.1 Remove (object) from empty Options");
8 shouldBe("select1.options.remove(value)", "undefined");
13 debug("1.2 Remove (string) from empty Options");
15 shouldBe("select1.options.remove(value)", "undefined");
20 debug("1.3 Remove (float) from empty Options");
22 shouldBe("select1.options.remove(value)", "undefined");
27 debug("1.4 Remove (boolean) from empty Options");
29 shouldBe("select1.options.remove(value)", "undefined");
34 debug("1.5 Remove (undefined) from empty Options")
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLOptionsCollection.h 42 void remove(int index);
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.h 40 static void remove(const ProtectionSpace&);
  /external/webkit/Source/WebCore/storage/
IDBTransactionCoordinator.cpp 71 m_startedTransactions.remove(transaction);
73 m_runningTransactions.remove(transaction);
75 m_transactions.remove(transaction);
106 m_startedTransactions.remove(transaction);
  /external/webkit/Source/WebKit/android/smoke/
MessageThread.h 49 // Remove all messages with the given object and member function. If
50 // member is null, remove all messages with the given object.
52 void remove(T* object, void (T::*member)(void));
66 void remove(const Message& message);
80 void MessageQueue::remove(T* object, void (T::*member)(void)) { function in class:android::MessageQueue
82 remove(message);
  /external/webkit/Source/WebKit/chromium/public/
WebAccessibilityCache.h 57 virtual void remove(int) = 0;
  /external/webkit/Source/WebKit2/Shared/
MutableArray.cpp 51 m_entries.remove(index);
MutableDictionary.h 46 void remove(const String& key);
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
GeolocationPermissionRequestManager.cpp 74 m_geolocationToIDMap.remove(it);
75 m_idToGeolocationMap.remove(it->second);
87 m_idToGeolocationMap.remove(it);
88 m_geolocationToIDMap.remove(geolocation);
  /libcore/luni/src/main/java/java/net/
CookieStore.java 84 * Remove the specified cookie from the store.
95 boolean remove(URI uri, HttpCookie cookie); method in interface:CookieStore
  /libcore/luni/src/main/java/java/util/
Dictionary.java 99 * the key to remove.
105 public abstract V remove(Object key); method in class:Dictionary
ListIterator.java 109 * {@code remove} or {@code add} have already been called after
112 public void remove(); method in interface:ListIterator
128 * {@code remove} or {@code add} have already been called after
AbstractCollection.java 86 * remove} method on each element. If the iterator does not support removal
103 it.remove();
207 * found, then the {@code remove} method is called on the iterator and
213 * the object to remove.
224 public boolean remove(Object object) { method in class:AbstractCollection
229 it.remove();
236 it.remove();
253 * remove} method is called on the iterator. If the iterator does not
258 * the collection of objects to remove.
278 it.remove();
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/ref/
ReferenceQueueTest.java 30 referenceQueue.remove(-1);
39 referenceQueue.remove(Long.MAX_VALUE);
54 referenceQueue.remove(1000);
63 assertNotNull(referenceQueue.remove());
69 assertNotNull(referenceQueue.remove(1000));
76 referenceQueue.remove();
86 referenceQueue.remove(1000);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractSequentialListTest.java 96 * @tests java.util.AbstractSequentialList#remove(int)
103 assertEquals(1, list.remove(0));
106 assertEquals("value", list.remove(0));
108 // remove index is out of bounds
110 list.remove(list.size());
116 list.remove(-1);
122 // list dont't support remove operation
125 mylist.remove(0);
199 public void remove() { method in class:AbstractSequentialListTest.MockListIterator
  /external/webkit/Source/JavaScriptCore/wtf/
BloomFilter.h 49 void remove(unsigned hash);
61 void remove(const AtomicString& string) { remove(string.impl()->existingHash()); } function in class:WTF::BloomFilter
62 void remove(const String& string) { remove(string.impl()->hash()); } function in class:WTF::BloomFilter
94 inline void BloomFilter<keyBits>::remove(unsigned hash) function in class:WTF::BloomFilter
  /external/webkit/Source/WebCore/dom/
DocumentOrderedMap.cpp 77 // There are multiple elements with this key. Remove the m_map
79 m_map.remove(addResult.first);
82 // There are multiple elements with this key. Remove the m_map
86 m_map.remove(cachedItem);
94 void DocumentOrderedMap::remove(AtomicStringImpl* key, Element* element) function in class:WebCore::DocumentOrderedMap
102 m_map.remove(cachedItem);
104 m_duplicateCounts.remove(key);
126 m_duplicateCounts.remove(key);
  /libcore/luni/src/test/java/libcore/java/util/
OldAndroidArrayListTest.java 56 array.remove(1);
57 array.remove(1);
81 assertFalse(al.remove(null));
82 assertFalse(al.remove("string"));
87 assertTrue(al.remove(null));
88 assertTrue(al.remove("string"));
  /bionic/libc/kernel/common/linux/
transport_class.h 26 int (*remove)(struct transport_container *, struct device *, member in struct:transport_class
30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
  /development/ndk/platforms/android-3/include/linux/
transport_class.h 26 int (*remove)(struct transport_container *, struct device *, member in struct:transport_class
30 #define DECLARE_TRANSPORT_CLASS(cls, nm, su, rm, cfg) struct transport_class cls = { .class = { .name = nm, }, .setup = su, .remove = rm, .configure = cfg, }
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
IteratorPool.java 74 // Remove object from end of free pool.
75 DTMIterator result = (DTMIterator)m_freeStack.remove(m_freeStack.size() - 1);
103 // Remove object from end of free pool.
104 DTMIterator result = (DTMIterator)m_freeStack.remove(m_freeStack.size() - 1);
  /external/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 43 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
44 return delegate().remove(key, value);
  /external/llvm/include/llvm/Support/
FileUtilities.h 55 sys::fs::remove(Filename.str(), existed);
61 /// had ownership of a file, remove it first.
66 sys::fs::remove(Filename.str(), existed);
  /external/proguard/src/proguard/
ClassPath.java 80 public ClassPathEntry remove(int index) method in class:ClassPath
82 return (ClassPathEntry)classPathEntries.remove(index);
  /external/webkit/Source/WebCore/platform/animation/
AnimationList.h 51 void remove(size_t i) { m_animations.remove(i); } function in class:WebCore::AnimationList

Completed in 551 milliseconds

12 3 4 5 6 7 8 91011>>