/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
ArrayDequeTest.java | 434 * {@link java.util.ArrayDeque#remove()} 441 assertEquals(testObjOne, testQue.remove()); 443 assertEquals(testObjTwo, testQue.remove()); 444 assertEquals(testObjThree, testQue.remove()); 447 testQue.remove(); 566 testQue.remove(); 567 testQue.remove(); 585 testQue.remove(); 586 testQue.remove(); 605 result.remove(); [all...] |
HashtableTest.java | 271 // ht.remove("12"); 272 // ht.remove("9"); 401 ht.remove(String.valueOf(i - 1)); 450 ht.remove("initial"); 484 it.remove(); 486 it.remove(); 489 list.remove(remove1); 490 list.remove(remove2); 507 it2.remove(); 519 assertTrue("should contain key", s1.remove("Key 0")) [all...] |
AbstractListTest.java | 48 public Object remove(int i) { method in class:AbstractListTest.SimpleList 49 return this.arrayList.remove(i); 86 it.remove(); 146 sList.remove(0); 152 lit.remove(); 201 emptySubList.remove(0); 202 fail("emptySubList.remove(0) should throw IndexOutOfBoundsException"); 216 public E remove(int idx) { method in class:AbstractListTest.MockArrayList 218 return list.remove(idx); 259 it.remove(); 386 public E remove(int idx) { method in class:AbstractListTest.MockRemoveFailureArrayList [all...] |
/external/chromium-trace/catapult/devil/devil/android/ |
flag_changer.py | 77 flags: A sequence of flags to remove, eg. ['--single-process']. Note 79 to remove a switch with a value, you must use the exact string 82 self.PushFlags(remove=flags) 84 def PushFlags(self, add=None, remove=None): 91 remove: A list of flags to remove, eg. ['--single-process']. Note that we 92 expect a complete match when removing flags; if you want to remove 99 if remove: 100 new_flags.difference_update(remove) 133 'Failed to remove the command line file at %s' % self._cmdline_file [all...] |
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
PeekingIteratorTest.java | 51 * later verify that {@link PeekingIterator#remove()} removes the 52 * same elements as the reference's iterator {@code #remove()}. 159 /* Should complain on attempt to remove() after peek(). */ 161 peekingIterator.remove(); 162 fail("remove() should throw IllegalStateException after a peek()"); 165 assertEquals("After remove() throws exception, peek should still be ok", 168 /* Should recover to be able to remove() after next(). */ 170 peekingIterator.remove(); 200 public void remove() { method in class:PeekingIteratorTest.ThrowsAtEndIterator 201 iterator.remove(); [all...] |
/external/guava/guava-tests/test/com/google/common/collect/ |
MapsTransformValuesTest.java | 144 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...] |
PeekingIteratorTest.java | 52 * later verify that {@link PeekingIterator#remove()} removes the 53 * same elements as the reference's iterator {@code #remove()}. 169 /* Should complain on attempt to remove() after peek(). */ 171 peekingIterator.remove(); 172 fail("remove() should throw IllegalStateException after a peek()"); 175 assertEquals("After remove() throws exception, peek should still be ok", 178 /* Should recover to be able to remove() after next(). */ 180 peekingIterator.remove(); 210 public void remove() { method in class:PeekingIteratorTest.ThrowsAtEndIterator 211 iterator.remove(); [all...] |
SynchronizedDequeTest.java | 35 outer.add("foo"); // necessary because we try to remove elements later on 56 public E remove() { method in class:SynchronizedDequeTest.TestDeque 58 return delegate.remove(); 111 public boolean remove(Object object) { method in class:SynchronizedDequeTest.TestDeque 113 return delegate.remove(object); 262 create().remove(); 272 create().remove("foo");
|
/packages/providers/TelephonyProvider/src/com/android/providers/telephony/ |
MmsProvider.java | 800 values.remove(Mms.CREATOR); [all...] |
/cts/tests/tests/view/src/android/view/cts/ |
ViewOverlayTest.java | 66 runTestOnUiThread(() -> mViewOverlay.remove(null)); 83 // Now remove that drawable from the overlay and test that we're back to pure white fill 84 runTestOnUiThread(() -> mViewOverlay.remove(redDrawable)); 104 // Now remove that drawable from the overlay and test that we're back to pure white fill 105 runTestOnUiThread(() -> mViewOverlay.remove(redDrawable)); 121 // Now remove that drawable from the overlay and test that we're back to pure white fill 124 // Remove the drawable twice. The second should be a no-op 125 mViewOverlay.remove(redDrawable); 126 mViewOverlay.remove(redDrawable); 155 // Remove one of the drawables from the overla [all...] |
/libcore/ojluni/src/main/java/java/util/ |
Queue.java | 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 66 * <td><b>Remove</b></td> 67 * <td>{@link Queue#remove remove()}</td> 83 * element which would be removed by a call to {@link #remove() } or 97 * <p>The {@link #remove()} and {@link #poll()} methods remove and 101 * implementation to implementation. The {@code remove()} and 103 * queue is empty: the {@code remove()} method throws an exception, 107 * not remove, the head of the queue 181 E remove(); method in interface:Queue [all...] |
AbstractCollection.java | 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 40 * <tt>iterator</tt> method must additionally implement its <tt>remove</tt> 268 * from the collection using the iterator's remove method. 272 * collection's iterator method does not implement the <tt>remove</tt> 279 public boolean remove(Object o) { method in class:AbstractCollection 284 it.remove(); 291 it.remove(); 353 * this collection with the iterator's <tt>remove</tt> method. 357 * <tt>iterator</tt> method does not implement the <tt>remove</tt> method 365 * @see #remove(Object [all...] |
/prebuilts/go/darwin-x86/src/container/list/ |
list_test.go | 74 l.Remove(e) 84 l.Remove(e2) 106 l.Remove(e2) 109 l.Remove(e2) 112 l.Remove(e2) 116 l.Remove(e2) 119 l.Remove(e2) 122 l.Remove(e2) 139 l.Remove(e) 210 l.Remove(e [all...] |
/prebuilts/go/linux-x86/src/container/list/ |
list_test.go | 74 l.Remove(e) 84 l.Remove(e2) 106 l.Remove(e2) 109 l.Remove(e2) 112 l.Remove(e2) 116 l.Remove(e2) 119 l.Remove(e2) 122 l.Remove(e2) 139 l.Remove(e) 210 l.Remove(e [all...] |
/external/jdiff/src/jdiff/ |
MergeChanges.java | 6 * Convert some remove and add operations into change operations. 30 * Convert some remove and add operations into change operations. 110 // Now remove the entries from the remove and add lists 111 classDiff.ctorsRemoved.remove(startRemoved); 112 classDiff.ctorsAdded.remove(startAdded); 170 // Now remove the entries from the remove and add lists 171 classDiff.methodsRemoved.remove(startRemoved); 172 classDiff.methodsAdded.remove(startAdded) [all...] |
/external/chromium-trace/catapult/third_party/py_vulcanize/py_vulcanize/ |
parse_html_deps.py | 131 # Remove declaration. 136 # Remove declaration. 141 # Remove all imports. 146 # Remove all script links. 151 # Remove all in-line scripts. 167 # Rewrite all external stylesheet hrefs or remove, as needed. 178 # Remove comments if minifying.
|
/external/curl/lib/ |
dotdot.c | 32 * "Remove Dot Segments" 72 * To handle query-parts properly, we must find it and remove it during the 83 remove that prefix from the input buffer; otherwise, */ 109 the input buffer and remove the last segment and its preceding "/" (if 115 /* remove the last segment from the output buffer */ 127 /* remove the last segment from the output buffer */ 136 /* D. if the input buffer consists only of "." or "..", then remove
|
/external/elfutils/libasm/ |
ChangeLog | 14 * asm_*.c: Remove old-style function definitions. 33 * Makefile.am: Remove !MUDFLAP conditions. 41 * asm_newscn.c (asm_newscn): Remove unused variable. 50 * asm_error.c: Always use __thread. Remove all !USE_TLS code. 99 * asm_abort.c: Don't try to remove output file if there is none. 120 * Makefile.am: Remove lint handling. 131 * asm_end.c (binary_end): Remove shadowing variables.
|
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/ |
LruBitmapPool.java | 120 tracker.remove(result); 151 tracker.remove(removed); 181 void remove(Bitmap bitmap); method in interface:LruBitmapPool.BitmapTracker 199 public void remove(Bitmap bitmap) { method in class:LruBitmapPool.ThrowingBitmapTracker 201 throw new IllegalStateException("Cannot remove bitmap not in tracker"); 203 bitmaps.remove(bitmap); 214 public void remove(Bitmap bitmap) { method in class:LruBitmapPool.NullBitmapTracker
|
/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/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
TriggerManager.java | 61 REMOVE; 112 menu.add(Menu.NONE, ContextMenuId.REMOVE.getId(), Menu.NONE, "Remove"); 131 if (item.getItemId() == ContextMenuId.REMOVE.getId()) { 132 mTriggerRepository.remove(trigger); 152 mTriggers.remove(trigger); 207 mTriggerRepository.remove(t);
|
/external/v8/test/mjsunit/tools/ |
splaytree.js | 155 assertThrows('tree.remove(5)'); 159 assertThrows('tree.remove(1)'); 160 assertThrows('tree.remove(6)'); 161 assertThrows('tree.remove(10)'); 162 assertEquals('root', tree.remove(5).value); 163 assertEquals('left', tree.remove(3).value); 164 assertEquals('right', tree.remove(7).value);
|
/external/valgrind/drd/tests/ |
filter_stderr | 16 # Remove "drd, ..." line and the following copyright line. 17 # Remove line numbers referring to drd's source code. 18 # Remove libpthread's version number. 19 # Remove line numbers from stack traces. 47 # Remove the message that more than hundred errors have been detected 51 # Remove the message about experimental support for Darwin. 57 # Remove <frame>...<file>drd_pthread_intercepts.c</file>...</frame>
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pDeviceList.java | 138 public boolean remove(WifiP2pDevice device) { method in class:WifiP2pDeviceList 140 return mDevices.remove(device.deviceAddress) != null; 144 * Remove a device from the list 149 public WifiP2pDevice remove(String deviceAddress) { method in class:WifiP2pDeviceList 151 return mDevices.remove(deviceAddress); 155 public boolean remove(WifiP2pDeviceList list) { method in class:WifiP2pDeviceList 158 if (remove(d)) ret = true;
|
/frameworks/support/compat/java/android/support/v4/util/ |
CircularArray.java | 102 * Remove first element from front of the CircularArray and return it. 117 * Remove last element from end of the CircularArray and return it. 133 * Remove all elements from the CircularArray. 140 * Remove multiple elements from front of the CircularArray, ignore when numOfElements 142 * @param numOfElements Number of elements to remove. 173 * Remove multiple elements from end of the CircularArray, ignore when numOfElements 175 * @param numOfElements Number of elements to remove.
|