Searched defs:remove (Results 1 - 25 of 77) sorted by path

1234

/frameworks/av/camera/
H A DCameraParameters.cpp285 void CameraParameters::remove(const char *key) function in class:android::CameraParameters
/frameworks/av/drm/libdrmframework/
H A DDrmManagerClientImpl.cpp43 void DrmManagerClientImpl::remove(int uniqueId) { function in class:DrmManagerClientImpl
/frameworks/av/media/libmedia/
H A DAudioParameter.cpp119 status_t AudioParameter::remove(const String8& key) function in class:android::AudioParameter
/frameworks/av/media/libstagefright/
H A DMetaData.cpp47 bool MetaData::remove(uint32_t key) { function in class:android::MetaData
/frameworks/base/core/java/android/app/
H A DBackStackRecord.java120 "Instantiate " + bse + " set remove fragment #" + mOps[pos]);
433 public FragmentTransaction remove(Fragment fragment) { method in class:BackStackRecord
H A DDownloadManager.java927 // called with nothing to remove!
943 * Cancel downloads and remove them from the download manager. Each download will be stopped if
947 * @param ids the IDs of the downloads to remove
950 public int remove(long... ids) { method in class:DownloadManager
H A DFragmentTransaction.java47 * essentially the same as calling {@link #remove(Fragment)} for all
71 public abstract FragmentTransaction remove(Fragment fragment); method in class:FragmentTransaction
H A DQueuedWork.java65 * (e.g. SharedPreferences) will pretty quickly call remove()
73 public static void remove(Runnable finisher) { method in class:QueuedWork
74 sPendingWorkFinishers.remove(finisher);
H A DSharedPreferencesImpl.java194 mListeners.remove(listener);
274 // TODO: remove the need to call awaitLoadedLocked() when
345 public Editor remove(String key) { method in class:SharedPreferencesImpl.EditorImpl
375 QueuedWork.remove(awaitCommit);
428 mMap.remove(k);
/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 DCursorEntityIterator.java90 public void remove() { method in class:CursorEntityIterator
91 throw new UnsupportedOperationException("remove not supported by EntityIterators");
H A DSharedPreferences.java146 * are done first, regardless of whether you called remove before
149 * @param key The name of the preference to remove.
154 Editor remove(String key); method in interface:SharedPreferences.Editor
157 * Mark in the editor to remove <em>all</em> values from the
H A DSyncQueue.java138 remove(op);
144 * @param operation the operation to remove
146 public void remove(SyncOperation operation) { method in class:SyncQueue
147 SyncOperation operationToRemove = mOperationsMap.remove(operation.key);
180 public void remove(Account account, int userId, String authority) { method in class:SyncQueue
194 entries.remove();
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/core/java/android/hardware/
H A DCamera.java443 * or null to remove the preview surface
486 * images are to be sent or null to remove the current preview surface
2056 public void remove(String key) { method in class:Camera.Parameters
2057 mMap.remove(key);
2723 remove(KEY_GPS_LATITUDE);
2724 remove(KEY_GPS_LONGITUDE);
2725 remove(KEY_GPS_ALTITUDE);
2726 remove(KEY_GPS_TIMESTAMP);
2727 remove(KEY_GPS_PROCESSING_METHOD);
/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/os/
H A DBundle.java291 public void remove(String key) { method in class:Bundle
293 mMap.remove(key);
H A DRegistrantList.java39 // if the handler is already in the registrant list, remove it
40 remove(h);
58 registrants.remove(i);
110 remove(Handler h) method in class:RegistrantList
H A DWorkSource.java201 public boolean remove(WorkSource other) { method in class:WorkSource
/frameworks/base/core/java/android/text/
H A DTextUtils.java318 * not remove any empty strings from the result. For example split("a,", "," ) returns {"a", ""}.
336 * split is empty. This returns []. This does not remove any empty strings from the result.
422 public void remove() { method in class:TextUtils.SimpleStringSplitter
/frameworks/base/core/java/android/util/
H A DFastImmutableArraySet.java74 public void remove() { method in class:FastImmutableArraySet.FastIterator
H A DLongSparseArray.java108 public void remove(long key) { method in class:LongSparseArray
H A DLruCache.java55 * value of null from {@link #get}, {@link #put} or {@link #remove} is
216 map.remove(key);
230 public final V remove(K key) { method in class:LruCache
237 previous = map.remove(key);
253 * {@link #remove}, or replaced by a call to {@link #put}. The default
260 * if the removal was caused by a {@link #put} or {@link #remove}.
263 * an eviction or a {@link #remove}.
H A DSparseArray.java108 public void remove(int key) { method in class:SparseArray
/frameworks/base/core/java/android/view/
H A DInputEventConsistencyVerifier.java207 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
226 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ true);
534 final KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false);
668 private KeyState findKeyState(int deviceId, int source, int keyCode, boolean remove) { argument
674 if (remove) {

Completed in 3047 milliseconds

1234