HomeSort by relevance Sort by last modified time
    Searched refs:remove (Results 1 - 25 of 2751) 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
MultiValueMap.java 8 public Object remove( K key, V item ); method in interface:MultiValueMap
  /external/guava/src/com/google/common/collect/
ForwardingIterator.java 47 public void remove() { method in class:ForwardingIterator
48 delegate().remove();
UnmodifiableIterator.java 24 * An iterator that does not support {@link #remove}.
36 public final void remove() { method in class:UnmodifiableIterator
ForwardingQueue.java 47 public E remove() { method in class:ForwardingQueue
48 return delegate().remove();
PeekingIterator.java 37 * {@link #remove()}.
62 void remove(); method in interface:PeekingIterator
  /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&);
  /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
  /dalvik/vm/test/
TestIndirectRefTable.cpp 50 if (irt.remove(cookie, iref0)) {
56 * Add three, check, remove in the order in which they were added.
78 if (!irt.remove(cookie, iref0) ||
79 !irt.remove(cookie, iref1) ||
80 !irt.remove(cookie, iref2))
99 * Add three, remove in the opposite order.
110 if (!irt.remove(cookie, iref2) ||
111 !irt.remove(cookie, iref1) ||
112 !irt.remove(cookie, iref0))
125 * Add three, remove middle / middle / bottom / top. (Second attemp
    [all...]
  /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/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);
  /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);
  /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
  /external/mesa3d/src/glsl/
opt_redundant_jumps.cpp 26 * Remove certain types of redundant jumps
70 then_jump->remove();
71 else_jump->remove();
76 /* If both branchs of the if-statement are now empty, remove the
80 ir->remove();
89 /* If the last instruction of a loop body is a 'continue', remove it.
96 last->remove();
  /external/skia/include/core/
SkRefDict.h 38 * If data is NULL, remove (if present) the entry matching name and call
47 * Remove the matching entry (if found) and unref its data.
49 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict
52 * Remove all entries, and unref() their associated data.

Completed in 963 milliseconds

1 2 3 4 5 6 7 8 91011>>