Searched refs:remove (Results 1 - 25 of 2998) sorted by relevance

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dremove.c9 // 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
/external/chromium_org/chrome/installer/linux/debian/
H A Dprerm11 # Treat conflict remove as an upgrade.
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/
H A DMultiMap.java35 public Object remove( Object key, Object item ); method in interface:MultiMap
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DChildNode.h25 static void remove(Node& node, ExceptionState& exceptionState) function in class:blink::ChildNode
27 return node.remove(exceptionState);
H A DChildNode.idl31 [RaisesException, CustomElementCallbacks] void remove();
/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
H A DAndroid.mk17 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/
H A DSetPreferencesActivity.java64 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);
/external/chromium_org/chrome/common/extensions/docs/static/js/
H A Dsidebar.js24 toggleIndicator.classList.remove('toggled');
26 toggleable.classList.remove('hidden');
/external/chromium_org/tools/gyp/test/msvs/external_builder/
H A Dgyptest-all.py30 os.remove('msbuild_rule.out')
31 os.remove('msbuild_action.out')
44 os.remove('external_builder.out')
57 os.remove('external_builder.out')
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DIntSet.java34 * @param value int to remove
36 void remove(int value); method in interface:IntSet
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java72 public boolean remove(final URI uri) { method in class:RedirectLocations
73 return this.uris.remove(uri);
/external/chromium_org/native_client_sdk/src/tools/
H A Dcompiler-wrapper.py23 args.remove('--glibc')
26 args.remove('--newlib')
/external/chromium_org/third_party/WebKit/public/web/
H A DWebGeolocationPermissionRequestManager.h40 // 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&);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingIterator.java52 public void remove() { method in class:ForwardingIterator
53 delegate().remove();
H A DForwardingQueue.java65 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/
H A DSelfDescribingValueIterator.java22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
/external/libcxx/test/containers/sequences/list/list.ops/
H A Dremove.pass.cpp12 // void remove(const value_type& value);
25 c.remove(3);
33 c.remove(3);
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DGeolocationWatchers.cpp36 void GeolocationWatchers::remove(int id) function in class:blink::GeolocationWatchers
42 m_notifierToIdMap.remove(iter->value);
43 m_idToNotifierMap.remove(iter);
46 void GeolocationWatchers::remove(GeoNotifier* notifier) function in class:blink::GeolocationWatchers
51 m_idToNotifierMap.remove(iter->value);
52 m_notifierToIdMap.remove(iter);
H A DGeolocationWatchers.h23 void remove(int id);
24 void remove(GeoNotifier*);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebGeolocationPermissionRequestManager.cpp55 bool WebGeolocationPermissionRequestManager::remove(const WebGeolocationPermissionRequest& permissionRequest, int& id) function in class:blink::WebGeolocationPermissionRequestManager
62 m_private->m_geolocationIdMap.remove(it);
63 m_private->m_idGeolocationMap.remove(id);
67 bool WebGeolocationPermissionRequestManager::remove(int id, WebGeolocationPermissionRequest& permissionRequest) function in class:blink::WebGeolocationPermissionRequestManager
74 m_private->m_idGeolocationMap.remove(it);
75 m_private->m_geolocationIdMap.remove(geolocation);
H A DOpenedFrameTracker.cpp31 void OpenedFrameTracker::remove(WebFrame* frame) function in class:blink::OpenedFrameTracker
33 m_openedFrames.remove(frame);
/external/smack/src/org/jivesoftware/smack/packet/
H A DRegistration.java46 * <li>remove -- empty flag to remove account.
57 private boolean remove = false; field in class:Registration
129 public void setRemove(boolean remove){ argument
130 this.remove = remove;
136 if (instructions != null && !remove) {
139 if (attributes != null && attributes.size() > 0 && !remove) {
147 else if(remove){
148 buf.append("</remove>");
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDockController.js136 body.classList.remove("undocked");
137 body.classList.remove("dock-to-right");
138 body.classList.remove("dock-to-left");
142 body.classList.remove("undocked");
144 body.classList.remove("dock-to-left");
145 body.classList.remove("dock-to-bottom");
148 body.classList.remove("undocked");
149 body.classList.remove("dock-to-right");
151 body.classList.remove("dock-to-bottom");
155 body.classList.remove("doc
[all...]
/external/chromium_org/chrome/browser/resources/options/
H A Dhandler_options.css25 .handlers-remove-column {
29 .handlers-remove-link {
38 div > .handlers-remove-column {
42 div:not(.none):hover > .handlers-remove-column {
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoaderSet.h47 void remove(const RefPtrWillBeRawPtr<ResourceLoader>& loader) { m_set.remove(loader); } function in class:blink::FINAL

Completed in 717 milliseconds

1234567891011>>