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

1 2 3 4 5 6 7 891011>>

  /libcore/luni/src/test/java/libcore/java/util/
OldAbstractSetTest.java 42 public void remove() { method in class:OldAbstractSetTest.Mock_AbstractSet
78 public void remove() {
OldPriorityQueueTest.java 52 // Even though "BB" is equivalent to "AA" using the string length comparator, remove()
54 assertFalse(queue.remove("BB"));
55 assertTrue(queue.remove("AA"));
62 assertFalse(integerQueue.remove(111));
63 assertFalse(integerQueue.remove(null));
64 assertFalse(integerQueue.remove(""));
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DelayedOperations.java 45 mPendingOperations.remove(this);
50 mPendingOperations.remove(this);
  /packages/apps/Gallery/tests/src/com/android/camera/gallery/
MockImageList.java 45 return mList.remove(image);
49 return mList.remove(i) != null;
  /packages/apps/Mms/src/com/android/mms/dom/
NamedNodeMapImpl.java 62 mNodes.remove(node);
76 mNodes.remove(existing);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/widgets/
AvdDetailsDialog.java 103 // remove stuff we already displayed (or that we don't want to display)
104 copy.remove(AvdManager.AVD_INI_ABI_TYPE);
105 copy.remove(AvdManager.AVD_INI_CPU_ARCH);
106 copy.remove(AvdManager.AVD_INI_SKIN_NAME);
107 copy.remove(AvdManager.AVD_INI_SKIN_PATH);
108 copy.remove(AvdManager.AVD_INI_SDCARD_SIZE);
109 copy.remove(AvdManager.AVD_INI_SDCARD_PATH);
110 copy.remove(AvdManager.AVD_INI_IMAGES_1);
111 copy.remove(AvdManager.AVD_INI_IMAGES_2);
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 107 inverse().remove(value);
124 @Override public V remove(Object key) { method in class:AbstractBiMap
129 V oldValue = delegate.remove(key);
135 inverse.delegate.remove(oldValue);
173 @Override public boolean remove(Object key) { method in class:AbstractBiMap.KeySet
201 public void remove() { method
204 iterator.remove();
242 /*@Override*/ public void remove() { method
243 iterator.remove();
280 @Override public boolean remove(Object object)
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
StandardNames.java 100 assertTrue(algorithm, algorithms.remove(algorithm.toUpperCase()));
102 assertNotNull(PROVIDER_ALGORITHMS.remove(type));
279 PROVIDER_ALGORITHMS.remove("Configuration");
280 PROVIDER_ALGORITHMS.remove("GssApiMechanism");
281 PROVIDER_ALGORITHMS.remove("KeyInfoFactory");
282 PROVIDER_ALGORITHMS.remove("Policy");
283 PROVIDER_ALGORITHMS.remove("SaslClientFactory");
284 PROVIDER_ALGORITHMS.remove("SaslServerFactory");
285 PROVIDER_ALGORITHMS.remove("TerminalFactory");
286 PROVIDER_ALGORITHMS.remove("TransformService")
    [all...]
  /cts/tools/dasm/src/java_cup/
lalr_item_set.java 145 /** Remove a single item if it is in the set.
146 * @param itm the item to remove.
148 public void remove(lalr_item itm) throws internal_error method in class:lalr_item_set
155 /* remove it from hash table implementing set */
156 _all.remove(itm);
176 /** Remove (set subtract) a complete set.
177 * @param other the set to remove.
179 public void remove(lalr_item_set other) throws internal_error method in class:lalr_item_set
185 remove((lalr_item)e.nextElement()); method
190 /** Remove and return one item from the set (done in hash order). *
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
AbstractQueueTest.java 56 public void remove() { method
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();
ArrayDequeTest.java 429 * @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...]
HashtableTest.java 230 ht.remove("12");
231 ht.remove("9");
348 ht.remove(String.valueOf(i - 1));
399 ht.remove("initial");
430 it.remove();
432 it.remove();
435 list.remove(remove1);
436 list.remove(remove2);
453 it2.remove();
469 assertTrue("should contain key", s1.remove("Key 0"))
    [all...]
IdentityHashMapTest.java 83 // remove a null key
84 result = map.remove(null);
85 assertTrue("testE remove returned wrong value", result == anothervalue);
111 * @tests java.util.IdentityHashMap#remove(java.lang.Object)
119 map.remove("key1");
121 assertTrue("Did not remove key1", !map.containsKey("key1"));
122 assertTrue("Did not remove the value for key1", !map
131 * @tests java.util.IdentityHashMapTest#remove(java.lang.Object)
136 hashMap.remove("absent");
140 hashMap.remove("key")
    [all...]
SortedMapTestBase.java 104 j.remove();
105 i.remove();
146 assertEquals(ref.remove(key), map.remove(key));
157 assertEquals(ref.remove(key), map.remove(key));
176 j.remove();
177 i.remove();
273 map.remove("one");
342 j.remove();
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
AbstractSequentialListTest.java 99 public void remove() { method in class:AbstractSequentialListTest.Mock_unsupportedListIterator
138 public void remove() { method in class:AbstractSequentialListTest.Mock_ListIterator
199 strV.remove("String");
209 strV.remove(null);
341 public void remove() {
456 public void remove() {
467 asl.remove(asl.size() + 1);
474 asl.remove(-1);
482 asl.remove(i);
529 public void remove() {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
HashCountedSet.h 64 bool remove(const ValueType&);
65 bool remove(iterator);
153 inline bool HashCountedSet<Value, HashFunctions, Traits>::remove(const ValueType& value) function in class:WTF::HashCountedSet
155 return remove(find(value));
159 inline bool HashCountedSet<Value, HashFunctions, Traits>::remove(iterator it) function in class:WTF::HashCountedSet
172 m_impl.remove(it);
188 m_impl.remove(it);
  /external/webkit/Source/WebKit/chromium/tests/
PODRedBlackTreeTest.cpp 101 tree.remove(5);
120 tree.remove(4);
125 tree.remove(5);
144 tree.remove(3);
146 tree.remove(3);
150 tree.remove(3);
188 // Pick a random value to remove.
191 // Remove this value.
192 tree.remove(value);
  /frameworks/base/telephony/java/com/android/internal/telephony/
ServiceStateTracker.java 188 mRoamingOnRegistrants.remove(h);
209 mRoamingOffRegistrants.remove(h);
321 mAttachedRegistrants.remove(h);
339 mDetachedRegistrants.remove(h);
357 mNetworkAttachedRegistrants.remove(h);
376 mPsRestrictEnabledRegistrants.remove(h);
395 mPsRestrictDisabledRegistrants.remove(h);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationPermissions.cpp 68 s_instances.remove(index);
142 iter->second.remove(frame);
146 m_queuedOrigins.remove(index);
147 m_queuedOriginsToFramesMap.remove(iter);
187 m_queuedOrigins.remove(0);
189 m_queuedOriginsToFramesMap.remove(origin);
233 m_queuedOrigins.remove(index);
235 m_queuedOriginsToFramesMap.remove(origin);
306 s_permanentPermissions.remove(iter);
  /build/core/
dex_preopt.mk 28 # $(1): the .jar or .apk to remove classes.dex
29 define dexpreopt-remove-classes.dex
30 $(hide) $(AAPT) remove $(1) classes.dex
59 $$(call dexpreopt-remove-classes.dex,$$@)
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 347 waitingThreads.remove(waitingThread);
388 issuedConnections.remove(entry.getWeakRef());
435 freeConnections.remove(entry);
436 boolean valid = idleConnHandler.remove(entry.getConnection());
512 * <p><b>Note:</b> Does not remove the entry from the freeConnections list.
536 routeToPool.remove(route);
539 idleConnHandler.remove(entry.getConnection());// not idle, but dead
556 //@@@ with get() instead of remove, we could
558 BasicPoolEntry entry = freeConnections.remove();
582 routeToPool.remove(route)
    [all...]
  /external/icu4c/test/intltest/
msfmrgts.cpp 123 tempBuffer.remove();
130 tempBuffer.remove();
212 temp.remove();
227 temp1.remove();
259 tempBuffer.remove();
596 str.remove();
599 str.remove();
602 str.remove();
605 str.remove();
608 str.remove();
    [all...]
  /external/javassist/src/main/javassist/scopedpool/
SoftValueHashMap.java 26 * This Map will remove entries when the value in the map has been cleaned from
66 * Remove all invalidated entries from the map, that is, remove all entries
73 // only remove if it is the *exact* same WeakValueRef
75 hash.remove(ref.key);
220 public Object remove(Object key) { method in class:SoftValueHashMap
222 return hash.remove(key);
  /external/webkit/Source/JavaScriptCore/qt/api/
qscriptvalueiterator_p.h 46 inline void remove();
134 inline void QScriptValueIteratorPrivate::remove() function in class:QScriptValueIteratorPrivate
141 m_idx.remove();
  /external/webkit/Source/WebCore/platform/graphics/android/
TexturesGenerator.cpp 87 mRequestedOperations.remove(i);
148 mRequestedOperations.remove(i);
159 mRequestedOperations.remove(currentIndex);

Completed in 1626 milliseconds

1 2 3 4 5 6 7 891011>>