HomeSort by relevance Sort by last modified time
    Searched refs:remove (Results 1 - 25 of 5666) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/util/
Iterator.java 60 * if {@code next} has not been called, or {@code remove} has
63 public void remove(); method in interface:Iterator
Queue.java 38 * <td><b>Remove</b></td>
39 * <td>{@link #remove remove()}</td>
55 * element which would be removed by a call to {@link #remove() } or
69 * <p>The {@link #remove()} and {@link #poll()} methods remove and
73 * implementation to implementation. The <tt>remove()</tt> and
75 * queue is empty: the <tt>remove()</tt> method throws an exception,
79 * not remove, the head of the queue.
161 E remove(); method in interface:Queue
    [all...]
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 35 public Object remove( Object key, Object item ); method in interface:MultiMap
  /frameworks/base/core/java/android/view/
ViewGroupOverlay.java 59 * @see #remove(View)
71 * @see ViewOverlay#remove(Drawable)
73 public void remove(View view) { method in class:ViewGroupOverlay
74 mOverlayViewGroup.remove(view);
  /external/replicaisland/src/com/replica/replicaisland/
SetPreferencesActivity.java 64 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_ROW);
65 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_INDEX);
66 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_COMPLETED);
67 editor.remove(PreferenceConstants.PREFERENCE_LINEAR_MODE);
68 editor.remove(PreferenceConstants.PREFERENCE_TOTAL_GAME_TIME);
69 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED);
70 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_TOTAL);
71 editor.remove(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED);
72 editor.remove(PreferenceConstants.PREFERENCE_DIFFICULTY);
  /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
run 23 echo "ArrayList.remove()"
24 dx --find-usages foo.dex "Ljava/util/ArrayList;" remove
26 echo "Collection.remove()"
27 dx --find-usages foo.dex "Ljava/util/Collection;" remove
  /developers/build/prebuilts/gradle/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
CarHelper.java 42 extras.remove(SLOT_RESERVATION_QUEUE);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /developers/samples/android/media/MediaBrowserService/Application/src/main/java/com/example/android/mediabrowserservice/utils/
CarHelper.java 42 extras.remove(SLOT_RESERVATION_QUEUE);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /development/samples/browseable/MediaBrowserService/src/com.example.android.mediabrowserservice/utils/
CarHelper.java 42 extras.remove(SLOT_RESERVATION_QUEUE);
47 extras.remove(SLOT_RESERVATION_SKIP_TO_PREV);
52 extras.remove(SLOT_RESERVATION_SKIP_TO_NEXT);
  /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
  /external/dexmaker/src/dx/java/com/android/dx/util/
IntSet.java 34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 72 public boolean remove(final URI uri) { method in class:RedirectLocations
73 return this.uris.remove(uri);
  /external/guava/guava/src/com/google/common/collect/
ForwardingIterator.java 52 public void remove() { method in class:ForwardingIterator
53 delegate().remove();
ForwardingQueue.java 64 public E remove() { method in class:ForwardingQueue
65 return delegate().remove();
109 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
110 * override {@link #remove}, you may wish to override {@link #poll} to forward
117 return remove();
TransformedIterator.java 52 public final void remove() { method in class:TransformedIterator
53 backingIterator.remove();
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/list/list.ops/
remove.pass.cpp 12 // void remove(const value_type& value);
25 c.remove(3);
33 c.remove(3);
  /external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
MultisetRemoveTester.java 36 * Tests for {@code Multiset#remove}, {@code Multiset.removeAll}, and {@code Multiset.retainAll}
46 getMultiset().remove(samples.e0, -1);
55 getMultiset().remove(samples.e0, 2);
63 assertEquals("old count", originalCount, getMultiset().remove(samples.e0, 0));
70 assertEquals("multiset.remove(present, 2) didn't return the old count",
71 1, getMultiset().remove(samples.e0, 2));
72 assertFalse("multiset contains present after multiset.remove(present, 2)",
81 assertEquals("multiset.remove(present, 2) didn't return the old count",
82 3, getMultiset().remove(samples.e0, 2));
83 assertTrue("multiset contains present after multiset.remove(present, 2)"
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
KeyStoreLruCache.java 41 mTaskKeys.remove(taskId);
59 remove(key);
74 final void remove(Task.TaskKey key) { method in class:KeyStoreLruCache
75 mCache.remove(key.id);
76 mTaskKeys.remove(key.id);
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/prefill/
PreFillQueue.java 24 public PreFillType remove() { method in class:PreFillQueue
29 bitmapsPerType.remove(result);
30 keyList.remove(keyIndex);
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.cons/
pointer.pass.cpp 34 std::remove(temp.c_str());
45 std::remove(temp.c_str());
string.pass.cpp 34 std::remove(temp.c_str());
45 std::remove(temp.c_str());
  /external/libcxx/test/std/input.output/file.streams/fstreams/ofstream.members/
close.pass.cpp 32 std::remove(temp.c_str());
41 std::remove(temp.c_str());

Completed in 567 milliseconds

1 2 3 4 5 6 7 8 91011>>