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

1234567891011>>

/external/nist-sip/java/gov/nist/core/
H A DMultiMap.java35 public Object remove( Object key, Object item ); method in interface:MultiMap
H A DMultiValueMap.java8 public Object remove( K key, V item ); method in interface:MultiValueMap
/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/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/webkit/Source/WebCore/bindings/js/
H A DJSHTMLSelectElementCustom.cpp35 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/
H A DRedirectLocations.java67 public boolean remove(final URI uri) { method in class:RedirectLocations
68 return this.uris.remove(uri);
/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();
H A DPeekingIterator.java37 * {@link #remove()}.
64 void remove(); method in interface:PeekingIterator
H A DUnmodifiableIterator.java24 * An iterator that does not support {@link #remove}.
40 public final void remove() { method in class:UnmodifiableIterator
/external/hamcrest/src/org/hamcrest/internal/
H A DSelfDescribingValueIterator.java22 public void remove() { method in class:SelfDescribingValueIterator
23 values.remove();
/external/webkit/Source/WebKit/chromium/public/
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_API bool remove(const WebKit::WebGeolocationPermissionRequest&, int&);
50 WEBKIT_API bool remove(int, WebKit::WebGeolocationPermissionRequest&);
/external/webkit/Source/WebKit/chromium/src/
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/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/webkit/Source/WebCore/css/
H A DStyleList.cpp48 void StyleList::remove(unsigned position) function in class:WebCore::StyleList
52 m_children.remove(position);
/external/webkit/Source/WebKit2/Shared/
H A DMutableDictionary.cpp51 void MutableDictionary::remove(const String& key) function in class:WebKit::MutableDictionary
53 m_map.remove(key);
H A DMutableArray.cpp51 m_entries.remove(index);
H A DMutableDictionary.h46 void remove(const String& key);
/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...]
/external/clang/include/clang/Edit/
H A DEditsReceiver.h28 virtual void remove(CharSourceRange range);
/external/mesa3d/src/glsl/
H A Dopt_redundant_jumps.cpp70 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/
H A DSkRefDict.h31 * If data is NULL, remove (if present) the entry matching name and call
42 void remove(const char name[]) { this->set(name, NULL); } function in class:SkRefDict
/external/webkit/Source/WebCore/platform/network/
H A DCredentialStorage.h40 static void remove(const ProtectionSpace&);
/external/webkit/Source/WebCore/storage/
H A DIDBTransactionCoordinator.cpp71 m_startedTransactions.remove(transaction);
73 m_runningTransactions.remove(transaction);
75 m_transactions.remove(transaction);
106 m_startedTransactions.remove(transaction);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DGeolocationPermissionRequestManager.cpp74 m_geolocationToIDMap.remove(it);
75 m_idToGeolocationMap.remove(it->second);
87 m_idToGeolocationMap.remove(it);
88 m_geolocationToIDMap.remove(geolocation);

Completed in 409 milliseconds

1234567891011>>