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

1234567891011>>

/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dremove.c8 int remove(const char* path) { function
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DStyleCustomFilterProgram.cpp41 m_cache->remove(this);
/external/chromium_org/chrome/installer/linux/debian/
H A Dprerm9 # Treat conflict remove as an upgrade.
20 update-alternatives --remove x-www-browser /usr/bin/@@PACKAGE@@
21 update-alternatives --remove gnome-www-browser /usr/bin/@@PACKAGE@@
/external/nist-sip/java/gov/nist/core/
H A DMultiMap.java35 public Object remove( Object key, Object item ); method in interface:MultiMap
/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/third_party/WebKit/Source/core/dom/
H A DStyleSheetScopingNodeList.cpp46 m_scopingNodesRemoved->remove(node);
49 void StyleSheetScopingNodeList::remove(ContainerNode* node) function in class:WebCore::StyleSheetScopingNodeList
54 m_scopingNodes->remove(node);
H A DChildNode.idl29 [RaisesException, CustomElementCallbacks=Enable] void remove();
/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.java67 public boolean remove(final URI uri) { method in class:RedirectLocations
68 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 WEBKIT_EXPORT bool remove(const WebKit::WebGeolocationPermissionRequest&, int&);
50 WEBKIT_EXPORT bool remove(int, WebKit::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/chromium_org/third_party/WebKit/Source/web/
H A DWebGeolocationPermissionRequestManager.cpp61 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/chromium_org/chrome_frame/
H A Dcombine_libs.py59 args += ['/remove:%s' % obj for obj in removals]
75 parser.add_option('-r', '--remove', dest = 'remove',
86 remove = opt.remove
94 remove = remove.strip()
96 if remove:
98 remove_re = re.compile(opt.remove)
100 parser.error('%s is not a valid regular expression' % opt.remove)
[all...]
/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/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/bindings/v8/custom/
H A DV8HTMLSelectElementCustom.cpp56 imp->remove(element->index());
60 imp->remove(toInt32(args[0]));
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.h47 void remove(Animation* animation) function in class:WebCore::AnimationStack
51 m_activeAnimations.remove(position);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSVariablesMap.idl33 [ImplementedAs=remove] boolean delete(DOMString name);
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
H A DMapRemoveTester.java30 * 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(sample
[all...]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
H A DTestFastQueue.java59 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...]

Completed in 671 milliseconds

1234567891011>>