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

1 23 4 5 6 7 8 91011>>

  /external/mockito/src/main/java/org/mockito/internal/debugging/
WarningsFinder.java 35 unusedIterator.remove();
36 unstubbedIterator.remove();
  /libcore/ojluni/src/main/java/java/util/
AbstractSequentialList.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
38 * <tt>remove(int index)</tt>) on top of the list's list iterator, instead of
49 * should additionally implement the list iterator's <tt>remove</tt> and
160 * the element with <tt>ListIterator.remove</tt>.
164 * implement the <tt>remove</tt> operation.
169 public E remove(int index) { method in class:AbstractSequentialList
173 e.remove();
Collection.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
308 * @throws UnsupportedOperationException if the <tt>remove</tt> operation
311 boolean remove(Object o); method in interface:Collection
382 * @see #remove(Object)
395 * {@link Iterator#remove()}. If the collection's iterator does not
415 each.remove();
441 * @see #remove(Object)
  /libcore/ojluni/src/main/java/sun/nio/ch/
MembershipRegistry.java 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
100 * Remove a key from the registry
102 void remove(MembershipKeyImpl key) { method in class:MembershipRegistry
109 i.remove();
114 groups.remove(group);
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
TextElementIteratorsFactory.java 74 public void remove() { method in class:TextElementIteratorsFactory.CascadingIterator
76 current.remove();
80 next.remove();
119 public void remove() { method in class:TextElementIteratorsFactory.SingleElementIterator
154 public void remove() { method in class:TextElementIteratorsFactory.ComposedIterator
155 elements.get(currIndex).remove();
164 public void remove() {
  /frameworks/support/collection/src/test/java/androidx/collection/
ArrayMapCompatTest.java 48 assertTrue(expectedEntriesToIterate.remove(firstEntry));
52 assertTrue(expectedEntriesToIterate.remove(secondEntry));
82 assertTrue(expectedKeysToIterate.remove(firstKey));
86 assertTrue(expectedKeysToIterate.remove(secondKey));
108 assertTrue(expectedValuesToIterate.remove(firstValue));
112 assertTrue(expectedValuesToIterate.remove(secondValue));
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
Helpers.java 88 if (!act.remove(object)) {
125 public void remove() { method in class:Helpers
126 listIter.remove();
148 public void remove() {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
Helpers.java 90 if (!act.remove(object)) {
127 public void remove() { method in class:Helpers
128 listIter.remove();
150 public void remove() {
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/
VisitorSetTest.java 89 itr.remove();
92 itr.remove();
102 assertTrue(set.remove(x1));
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
LazyField.java 150 public void remove() { method in class:LazyField.LazyIterator
151 iterator.remove();
  /external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
BasicMDCAdapter.java 97 * Remove the the context identified by the <code>key</code> parameter.
99 public void remove(String key) { method in class:BasicMDCAdapter
102 map.remove(key);
113 // the InheritableThreadLocal.remove method was introduced in JDK 1.5
118 inheritableThreadLocal.remove();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MethodLocation.java 143 @Override public void remove() { method
147 it.remove();
158 throw new IllegalArgumentException("Cannot add a label that is already placed. You must remove " +
194 @Override public void remove() {
198 it.remove();
210 "method. You must remove it from its current location first.");
  /packages/apps/UnifiedEmail/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();
  /dalvik/dexgen/src/com/android/dexgen/util/
IntSet.java 34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
  /dalvik/dx/src/com/android/dx/util/
IntSet.java 34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
  /dalvik/dx/tests/118-find-usages/
Foo.java 41 new ArrayList<String>().remove(5);
45 new ArrayList<String>().remove("5");
55 @Override public boolean remove(Object o) { method in class:Foo.MyList
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
rrcs.py 139 def remove(fn): function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/scripts/
queens.py 36 self.remove(x, y)
47 def remove(self, x, y): member in class:Queens
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
SeriesAndFormatterList.java 65 public boolean remove(SeriesType series) { method in class:SeriesAndFormatterList
70 seriesList.remove(index);
71 formatterList.remove(index);
  /external/annotation-tools/scene-lib/src/annotations/util/coll/
VivifyingMap.java 54 ei.remove();
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BitSet.as 189 // remove this element from this set
190 public function remove(el:int):void { function
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 142 public static object remove( this IList list, int index ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
150 public static void remove<T>( this IList<T> list, T item ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
152 list.Remove( item );
SetExtensions.cs 71 public static bool remove<T>( this HashSet<T> set, T item ) method in class:Antlr.Runtime.JavaExtensions.SetExtensions
73 return set.Remove( item );
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
FastQueue.h 52 /** Get and remove first element in queue */
53 public T remove() { function in class:FastQueue
  /external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
BitSet.pm 63 sub remove : Tests(2) { subroutine
69 $bs->remove(3);

Completed in 636 milliseconds

1 23 4 5 6 7 8 91011>>