HomeSort by relevance Sort by last modified time
    Searched refs:remove (Results 51 - 75 of 3464) sorted by null

1 23 4 5 6 7 8 91011>>

  /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/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 159 assertFalse(keys.remove(null));
160 assertFalse(keys.remove(6));
161 assertFalse(keys.remove(-6));
177 keys.remove(1);
178 keys.remove(2);
179 assertFalse(keys.remove(null));
180 assertFalse(keys.remove(6));
181 assertFalse(keys.remove(-6));
236 assertFalse(values.remove(null));
237 assertFalse(values.remove(6))
    [all...]
  /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/main/java/java/util/
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...]
AbstractSet.java 90 * the collection of objects to remove.
103 it.remove();
110 result = remove(it.next()) || result;
Deque.java 23 * ends of the deque. Methods are provided to insert, remove, and
57 * <td><b>Remove</b></td>
93 * <td>{@link java.util.Queue#remove remove()}</td>
140 * <p>This interface provides two methods to remove interior
278 * Retrieves, but does not remove, the first element of this deque.
289 * Retrieves, but does not remove, the last element of this deque.
299 * Retrieves, but does not remove, the first element of this deque,
307 * Retrieves, but does not remove, the last element of this deque,
410 E remove(); method in interface:Deque
506 boolean remove(Object o); method in interface:Deque
    [all...]
  /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 32 int (*remove)(struct transport_container *, struct device *, member in struct:transport_class
36 #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/guava/src/com/google/common/collect/
ForwardingConcurrentMap.java 47 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
48 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
  /external/webkit/Source/WebKit/chromium/public/
WebIDBCursor.h 58 // FIXME: Remove the following 2 methods and uncomment third after roll.
78 // FIXME: Remove after WK roll.
79 virtual void remove(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { deleteFunction(callbacks, ec); } function in class:WebKit::WebIDBCursor
80 virtual void deleteFunction(WebIDBCallbacks* callbacks, WebExceptionCode& ec) { remove(callbacks, ec); }
  /external/webrtc/test/testsupport/
frame_writer_unittest.cc 28 std::remove(kOutputFilename.c_str());
35 std::remove(kOutputFilename.c_str());
  /frameworks/base/core/java/android/app/
IAlarmManager.aidl 32 void remove(in PendingIntent operation);
  /frameworks/base/services/java/com/android/server/am/
UriPermissionOwner.java 70 perm.readOwners.remove(this);
82 perm.writeOwners.remove(this);
100 perm.readOwners.remove(this);
106 it.remove();
119 perm.writeOwners.remove(this);
125 it.remove();
149 readUriPermissions.remove(perm);
156 writeUriPermissions.remove(perm);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Multipart.java 49 return mParts.remove(part);
53 mParts.remove(index);
  /packages/apps/Mms/src/com/android/mms/util/
SendingProgressTokenManager.java 51 synchronized public static void remove(Object key) { method in class:SendingProgressTokenManager
53 Log.v(TAG, "TokenManager.remove(" + key + ")");
55 TOKEN_POOL.remove(key);
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/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, }
  /prebuilts/gcc/linux-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/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, }
  /prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/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, }
  /prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/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, }

Completed in 2492 milliseconds

1 23 4 5 6 7 8 91011>>