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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
remove.c 9 // Glibc's remove(3) and unlink(2) entry points are not yet hooked up
12 // TODO(sbc): remove this once glibc plumbing is in place for remove/unlink
14 int remove(const char* path) { function
  /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/chromium_org/chrome/installer/linux/debian/
prerm 11 # Treat conflict remove as an upgrade.
21 # Remove from the alternatives system
22 update-alternatives --remove x-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
23 update-alternatives --remove gnome-www-browser /usr/bin/@@USR_BIN_SYMLINK_NAME@@
25 update-alternatives --remove google-chrome /usr/bin/@@USR_BIN_SYMLINK_NAME@@
  /external/nist-sip/java/gov/nist/core/
MultiMap.java 35 public Object remove( Object key, Object item ); method in interface:MultiMap
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ChildNode.h 25 static void remove(Node& node, ExceptionState& exceptionState) function in class:blink::ChildNode
27 return node.remove(exceptionState);
ChildNode.idl 31 [RaisesException, CustomElementCallbacks] void remove();
  /external/chromium_org/third_party/WebKit/public/web/
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 BLINK_EXPORT bool remove(const WebGeolocationPermissionRequest&, int&);
50 BLINK_EXPORT bool remove(int, WebGeolocationPermissionRequest&);
  /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/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
Android.mk 17 test_makefile := external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/Android.mk
19 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy_if
23 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy
27 test_name := algorithms/alg.modifying.operations/alg.remove/remove
28 test_src := remove.pass.cpp
31 test_name := algorithms/alg.modifying.operations/alg.remove/remove_if
  /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/chromium_org/third_party/WebKit/Source/web/
OpenedFrameTracker.h 26 void remove(WebFrame*);
  /external/chromium_org/tools/gyp/test/msvs/external_builder/
gyptest-all.py 30 os.remove('msbuild_rule.out')
31 os.remove('msbuild_action.out')
44 os.remove('external_builder.out')
57 os.remove('external_builder.out')
  /external/chromium_org/tools/gyp/test/restat/
gyptest-restat.py 27 os.remove(test.built_file_path('side_effect', chdir=chdir))
  /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/chromium_org/native_client_sdk/src/tools/
compiler-wrapper.py 23 args.remove('--glibc')
26 args.remove('--newlib')
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
GeolocationWatchers.h 23 void remove(int id);
24 void remove(GeoNotifier*);
  /external/guava/guava/src/com/google/common/collect/
ForwardingIterator.java 52 public void remove() { method in class:ForwardingIterator
53 delegate().remove();
  /external/hamcrest/src/org/hamcrest/internal/
SelfDescribingValueIterator.java 22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
  /external/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);

Completed in 995 milliseconds

1 2 3 4 5 6 7 8 91011>>