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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/tools/layoutlib/bridge/src/android/os/
Looper_Accessor.java 25 Looper.sThreadLocal.remove();
  /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
  /external/webkit/Source/WebKit/chromium/public/
WebGeolocationPermissionRequestManager.h 40 // Once the permission request has been decided, the second remove() method can be used to
41 // find the request. On WebGeolocationClient::cancelPermissionRequest, the first remove() method will
42 // remove the association with the id.
49 WEBKIT_API bool remove(const WebKit::WebGeolocationPermissionRequest&, int&);
50 WEBKIT_API bool remove(int, WebKit::WebGeolocationPermissionRequest&);
  /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
  /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/webkit/Source/WebCore/bindings/js/
JSHTMLSelectElementCustom.cpp 35 JSValue JSHTMLSelectElement::remove(ExecState* exec) function in class:WebCore::JSHTMLSelectElement
39 // The remove function can take either an option object or the index of an option.
41 select.remove(option);
43 select.remove(exec->argument(0).toInt32(exec));
51 select->remove(index);
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 67 public boolean remove(final URI uri) { method in class:RedirectLocations
68 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 65 public E remove() { method in class:ForwardingQueue
66 return delegate().remove();
110 * A sensible definition of {@link #poll} in terms of {@link #remove}. If you
111 * override {@link #remove}, you may wish to override {@link #poll} to forward
118 return remove();
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationPermissionRequestManager.cpp 61 bool WebGeolocationPermissionRequestManager::remove(const WebKit::WebGeolocationPermissionRequest& permissionRequest, int& id) function in class:WebGeolocationPermissionRequestManager
68 m_private->m_geolocationIdMap.remove(it);
69 m_private->m_idGeolocationMap.remove(id);
73 bool WebGeolocationPermissionRequestManager::remove(int id, WebKit::WebGeolocationPermissionRequest& permissionRequest) function in class:WebGeolocationPermissionRequestManager
80 m_private->m_idGeolocationMap.remove(it);
81 m_private->m_geolocationIdMap.remove(geolocation);
  /dalvik/vm/test/
TestIndirectRefTable.cpp 81 if (irt.remove(cookie, iref0)) {
87 * Add three, check, remove in the order in which they were added.
109 if (!irt.remove(cookie, iref0) ||
110 !irt.remove(cookie, iref1) ||
111 !irt.remove(cookie, iref2))
130 * Add three, remove in the opposite order.
141 if (!irt.remove(cookie, iref2) ||
142 !irt.remove(cookie, iref1) ||
143 !irt.remove(cookie, iref0))
156 * Add three, remove middle / middle / bottom / top. (Second attemp
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapRemoveTester.java 30 * A generic JUnit test which tests {@code remove} operations on a map. Can't be
45 assertEquals("remove(present) should return the associated value",
46 samples.e0.getValue(), getMap().remove(samples.e0.getKey()));
47 assertEquals("remove(present) should decrease a map's size by one.",
54 assertNull("remove(notPresent) should return null",
55 getMap().remove(samples.e3.getKey()));
65 assertEquals("remove(null) should return the associated value",
66 getValueForNullKey(), getMap().remove(null));
67 assertEquals("remove(present) should decrease a map's size by one.",
76 getMap().remove(samples.e0.getKey())
    [all...]
  /external/webkit/Source/WebCore/css/
StyleList.cpp 48 void StyleList::remove(unsigned position) function in class:WebCore::StyleList
52 m_children.remove(position);
  /external/webkit/Source/WebKit2/Shared/
MutableDictionary.cpp 51 void MutableDictionary::remove(const String& key) function in class:WebKit::MutableDictionary
53 m_map.remove(key);
  /frameworks/base/core/java/android/app/
QueuedWork.java 65 * (e.g. SharedPreferences) will pretty quickly call remove()
73 public static void remove(Runnable finisher) { method in class:QueuedWork
74 sPendingWorkFinishers.remove(finisher);
  /packages/apps/Mms/src/com/android/mms/transaction/
Observable.java 59 mIterator.remove();
61 mObservers.remove(observer);
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestFastQueue.java 59 String o = q.remove();
73 buf.append(q.remove());
75 buf.append(q.remove());
77 buf.append(q.remove());
79 buf.append(q.remove());
81 buf.append(q.remove());
93 try { q.remove(); }
106 q.remove();
107 q.remove();
109 try { q.remove(); }
    [all...]
  /bionic/libc/stdio/
remove.c 1 /* $OpenBSD: remove.c,v 1.7 2005/08/08 08:05:36 espie Exp $ */
40 remove(const char *file) function

Completed in 1462 milliseconds

1 2 3 4 5 6 7 8 91011>>