Searched defs:remove (Results 26 - 50 of 136) sorted by relevance

123456

/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java66 public void remove() { method in class:ExportTestProvider.MockEntityIterator
67 throw new UnsupportedOperationException("remove not supported");
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java122 * @param item The item to remove from the adapter.
125 public boolean remove(Object item) { method in class:ArrayObjectAdapter
128 mItems.remove(index);
148 * the starting position and the number of elements to remove.
150 * @param position The index of the first item to remove.
151 * @param count The number of items to remove.
161 mItems.remove(position);
/frameworks/volley/src/main/java/com/android/volley/
H A DCache.java57 public void remove(String key); method in interface:Cache
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockCache.java58 public void remove(String key) { method in class:MockCache
/frameworks/av/drm/libdrmframework/
H A DNoOpDrmManagerClientImpl.cpp21 void NoOpDrmManagerClientImpl::remove(int /* uniqueId */) { function in class:android::NoOpDrmManagerClientImpl
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp120 status_t AudioParameter::remove(const String8& key) function in class:android::AudioParameter
/frameworks/base/core/java/android/content/
H A DContentValues.java209 * @param key the name of the value to remove
211 public void remove(String key) { method in class:ContentValues
212 mValues.remove(key);
H A DSharedPreferences.java88 * for this argument is equivalent to calling {@link #remove(String)} with
149 * are done first, regardless of whether you called remove before
152 * @param key The name of the preference to remove.
157 Editor remove(String key); method in interface:SharedPreferences.Editor
160 * Mark in the editor to remove <em>all</em> values from the
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/core/java/android/net/nsd/
H A DDnsSdTxtRecord.java18 - implement remove()
99 int currentLoc = remove(key);
118 public int remove(String key) { method in class:DnsSdTxtRecord
/frameworks/base/core/java/android/util/
H A DLongSparseArray.java139 public void remove(long key) { method in class:LongSparseArray
H A DSparseArray.java157 public void remove(int key) { method in class:SparseArray
178 * @param size Number of mappings to remove
/frameworks/base/core/java/com/android/internal/midi/
H A DEventScheduler.java67 public SchedulableEvent remove() { method in class:EventScheduler.FastEventQueue
125 event = mEventPool.remove();
175 mEventBuffer.remove(lowestTime);
177 event = list.remove();
/frameworks/base/core/java/com/android/internal/util/
H A DCallbackRegistry.java24 * A common pattern for callbacks is to receive a notification and then remove
264 mCallbacks.remove(i);
272 * @param callback The callback to remove.
274 public synchronized void remove(C callback) { method in class:CallbackRegistry
276 mCallbacks.remove(callback);
/frameworks/base/libs/hwui/
H A DAnimatorManager.cpp50 // If the animator is already attached to other RenderNode, remove it from that RenderNode's
60 mNewAnimators.erase(std::remove(mNewAnimators.begin(), mNewAnimators.end(), animator),
93 mAnimators.erase(std::remove(mAnimators.begin(), mAnimators.end(), animator), mAnimators.end());
103 bool remove = animator->animate(mContext); local
104 if (remove) {
114 return remove;
H A DProgram.cpp194 void Program::remove() { function in class:android::uirenderer::Program
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DRemoteInputController.java48 entry /* contains */, null /* remove */);
59 pruneWeakThenRemoveAndContains(null /* contains */, entry /* remove */);
69 mSpinning.remove(key);
89 return pruneWeakThenRemoveAndContains(entry /* contains */, null /* remove */);
96 pruneWeakThenRemoveAndContains(null /* contains */, null /* remove */);
101 * Prunes dangling weak references, removes entries referring to {@param remove} and returns
103 * @param remove if non-null, removes this entry from the active remote inputs
107 NotificationData.Entry contains, NotificationData.Entry remove) {
111 if (item == null || item == remove) {
112 mOpen.remove(
106 pruneWeakThenRemoveAndContains( NotificationData.Entry contains, NotificationData.Entry remove) argument
[all...]
/frameworks/base/services/core/java/com/android/server/accounts/
H A DTokenCache.java98 TokenLruCache.this.remove(k);
128 Evictor evictor = mTokenEvictors.remove(oldVal.token);
152 // Only cache the token once we can remove it directly or by account.
208 public void remove(String accountType, String token) { method in class:TokenCache
212 public void remove(Account account) { method in class:TokenCache
226 remove(account.type, v.token);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DSparseWeakArray.java34 * Because our usage means that we never actually call {@link #remove(long)} or
107 public void remove(long key) { method in class:SparseWeakArray
/frameworks/base/wifi/java/android/net/wifi/p2p/
H A DWifiP2pDeviceList.java138 public boolean remove(WifiP2pDevice device) { method in class:WifiP2pDeviceList
140 return mDevices.remove(device.deviceAddress) != null;
149 public WifiP2pDevice remove(String deviceAddress) { method in class:WifiP2pDeviceList
151 return mDevices.remove(deviceAddress);
155 public boolean remove(WifiP2pDeviceList list) { method in class:WifiP2pDeviceList
158 if (remove(d)) ret = true;
H A DWifiP2pGroupList.java95 public void remove(int netId) { method in class:WifiP2pGroupList
96 mGroups.remove(netId);
104 void remove(String deviceAddress) { method in class:WifiP2pGroupList
105 remove(getNetworkId(deviceAddress));
/frameworks/data-binding/baseLibrary/src/main/java/android/databinding/
H A DCallbackRegistry.java24 * A common pattern for callbacks is to receive a notification and then remove
262 mCallbacks.remove(i);
271 * @param callback The callback to remove.
273 public synchronized void remove(C callback) { method in class:CallbackRegistry
275 mCallbacks.remove(callback);
/frameworks/minikin/libs/minikin/
H A DHbFontCache.cpp70 void remove(int32_t fontId) { function in class:android::HbFontCache
71 mCache.remove(fontId);
97 getFontCacheLocked()->remove(fontId);
/frameworks/opt/net/voip/src/java/android/net/rtp/
H A DAudioGroup.java168 synchronized void remove(AudioStream stream) { method in class:AudioGroup
169 Long id = mStreams.remove(stream);
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/
H A DConfigurationMap.java54 public WifiConfiguration remove(int netID) { method in class:ConfigurationMap
55 WifiConfiguration config = mPerID.remove(netID);
59 mPerConfigKey.remove(config.configKey().hashCode());
61 mPerIDForCurrentUser.remove(netID);
66 entries.remove();
70 mHiddenNetworkIdsForCurrentUser.remove(netID);

Completed in 664 milliseconds

123456