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

1 2 3 4 56 7 8 91011>>

  /libcore/luni/src/test/java/tests/api/java/util/
EnumMapTest.java 288 enumSizeMap.remove(Size.Small);
360 .remove(mockEntry));
364 .remove(mockEntry));
367 .remove(mockEntry));
369 .remove(new Integer(1)));
377 enumSizeMap.remove(Size.Big);
392 assertTrue("Remove does not success", set.removeAll(c));
396 assertTrue("Remove does not success", set.removeAll(c));
440 .remove(integer));
442 .remove(entry))
    [all...]
ListResourceBundleTest.java 68 assertTrue(result.remove(null));
69 assertTrue(result.remove(null));
70 assertTrue(result.remove(null));
  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
MmsProvider.java 786 values.remove(Mms.DELIVERY_TIME_TOKEN);
787 values.remove(Mms.SENDER_VISIBILITY);
788 values.remove(Mms.REPLY_CHARGING);
789 values.remove(Mms.REPLY_CHARGING_DEADLINE_TOKEN);
790 values.remove(Mms.REPLY_CHARGING_DEADLINE);
791 values.remove(Mms.REPLY_CHARGING_ID);
792 values.remove(Mms.REPLY_CHARGING_SIZE);
793 values.remove(Mms.PREVIOUSLY_SENT_BY);
794 values.remove(Mms.PREVIOUSLY_SENT_DATE);
795 values.remove(Mms.STORE)
    [all...]
  /external/guava/guava/src/com/google/common/collect/
StandardTable.java 47 * #columnMap()} have iterators that don't support {@code remove()}. Otherwise,
184 @Override public V remove( method in class:StandardTable
193 V value = map.remove(columnKey);
195 backingMap.remove(rowKey);
206 V value = entry.getValue().remove(column);
210 iterator.remove();
222 /** Remove a row key / column key / value mapping, if present. */
225 remove(rowKey, columnKey); method
296 @Override public boolean remove(Object obj) { method in class:StandardTable.CellSet
327 @Override public void remove() { method in class:StandardTable.CellIterator
393 public V remove(Object key) { method in class:StandardTable.Row
    [all...]
AbstractMapBasedMultiset.java 126 public void remove() { method
128 "no calls to next() since the last call to remove()");
130 backingEntries.remove();
163 * a more efficient remove() call.
192 public void remove() {
194 "no calls to next() since the last call to remove()");
200 entryIterator.remove();
249 @Override public int remove(@Nullable Object element, int occurrences) {
267 backingMap.remove(element);
282 existingCounter = backingMap.remove(element)
    [all...]
LinkedHashMultimap.java 53 * iteration order. However, if you remove all values associated with a key and
215 linkedEntries.remove(createEntry(value));
235 public void remove() { method
236 delegateIterator.remove();
237 linkedEntries.remove(createEntry(value));
242 @Override public boolean remove(@Nullable Object value) { method in class:LinkedHashMultimap
243 boolean changed = delegate.remove(value);
246 * linkedEntries.remove() will return false when this method is called
247 * by entries().iterator().remove()
249 linkedEntries.remove(createEntry(value))
307 public void remove() { method
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
ConcurrentModTest.java 50 al.remove(1); // remove the 2.0
80 al.remove(1); // remove the 2.0
110 al.remove(1); // remove the 2.0
140 al.remove(1); // remove the 2.0
143 // illegal call the subList's method remove(int).
144 sub.remove(1)
    [all...]
  /external/llvm/lib/Support/
LockFileManager.cpp 47 sys::fs::remove(LockFileName, Existed);
106 // We failed to write out PID, so make up an excuse, remove the
110 sys::fs::remove(UniqueLockFileName.c_str(), Existed);
136 sys::fs::remove(UniqueLockFileName.str(), Existed);
142 sys::fs::remove(LockFileName.str(), Existed);
160 // Since we own the lock, remove the lock file and our own unique lock file.
162 sys::fs::remove(LockFileName.str(), Existed);
163 sys::fs::remove(UniqueLockFileName.str(), Existed);
181 // finish up and remove the lock file.
  /external/mesa3d/src/glsl/
loop_unroll.cpp 89 * will execute exactly once. Remove the break, set the iteration
92 last_ir->remove();
142 move_ir->remove();
149 /* Remove the break from the if-statement.
151 break_ir->remove();
166 ir_to_replace->remove();
178 ir_to_replace->remove();
196 /* The loop has been replaced by the unrolled copies. Remove the original
199 ir->remove();
  /external/srec/tools/grxmlcompile/
testhashmap.cpp 59 myHash.remove(1);
94 myHash.remove(1);
122 void remove( int i );
147 remove(3);
189 void remove( int i )
193 if ( myHash.remove(i) ) {
198 cout << "Failed to remove '" << i << "'" << endl;
  /libcore/luni/src/test/java/libcore/java/util/
OldListIteratorTest.java 88 public void remove() { method in class:OldListIteratorTest.Mock_ListIterator
101 l.remove();
108 l.remove();
113 l.remove();
121 ml.remove();
186 l.remove();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
AbstractMapBasedMultiset.java 123 public void remove() { method
125 "no calls to next() since the last call to remove()");
127 backingEntries.remove();
160 * a more efficient remove() call.
189 public void remove() {
191 "no calls to next() since the last call to remove()");
197 entryIterator.remove();
246 @Override public int remove(@Nullable Object element, int occurrences) {
264 backingMap.remove(element);
279 existingCounter = backingMap.remove(element)
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingConcurrentMapTest.java 52 assertFalse(map.remove("foo", 2));
53 assertFalse(map.remove("bar", 1));
55 assertTrue(map.remove("foo", 1));
  /external/nist-sip/java/gov/nist/javax/sip/clientauthutils/
CredentialsCache.java 40 authorizationHeaders.remove(callId);
76 li.remove();
110 * Remove a cached authorization header.
115 this.authorizationHeaders.remove(callId);
  /external/webkit/Source/WebCore/css/
CSSImageGeneratorValue.cpp 70 m_sizes.remove(size);
72 m_images.remove(size);
76 m_clients.remove(renderer);
  /external/webkit/Source/WebCore/dom/
DeviceMotionController.cpp 82 m_listeners.remove(window);
83 m_newListeners.remove(window);
95 m_newListeners.remove(window);
DeviceOrientationController.cpp 84 m_listeners.remove(window);
85 m_newListeners.remove(window);
97 m_newListeners.remove(window);
ScriptedAnimationController.cpp 76 m_callbacks.remove(i);
112 callbacks.remove(i);
118 // Remove any callbacks we fired from the list of pending callbacks.
121 m_callbacks.remove(i);
  /external/webkit/Source/WebCore/html/parser/
HTMLFormattingElementList.cpp 88 remove(oldElement);
96 void HTMLFormattingElementList::remove(Element* element)
100 m_entries.remove(index);
  /frameworks/base/core/java/android/os/
RegistrantList.java 39 // if the handler is already in the registrant list, remove it
40 remove(h);
58 registrants.remove(i);
110 remove(Handler h) method in class:RegistrantList
  /libcore/luni/src/main/java/libcore/util/
CollectionUtils.java 33 * @param trim true to remove reference objects from the iterable after
50 delegate.remove();
70 public void remove() { method
74 delegate.remove();
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 148 * Remove an attribute from the list.
164 names.remove(i);
165 types.remove(i);
166 values.remove(i);
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
NameConverterTests.java 44 structuredName.remove(StructuredName.SUFFIX);
48 structuredName.remove(StructuredName.MIDDLE_NAME);
97 structuredName.remove(field);
  /packages/apps/Email/src/org/apache/james/mime4j/decoder/
UnboundedFifoByteBuffer.java 34 * The {@link #remove()} and {@link #get()} operations perform in constant time.
171 public byte remove() { method in class:UnboundedFifoByteBuffer
239 public void remove() { method
246 UnboundedFifoByteBuffer.this.remove();
  /packages/apps/Launcher2/src/com/android/launcher2/
FolderInfo.java 63 * Remove an app or shortcut. Does not change the DB.
67 public void remove(ShortcutInfo item) { method in class:FolderInfo
68 contents.remove(item);
94 listeners.remove(listener);

Completed in 1871 milliseconds

1 2 3 4 56 7 8 91011>>