Searched refs:remove (Results 101 - 125 of 449) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java237 * @param object The object to remove.
239 public void remove(T object) { method in class:ArrayAdapter
242 mOriginalValues.remove(object);
244 mObjects.remove(object);
292 * {@link #insert}, {@link #remove}, {@link #clear}) automatically call
/frameworks/base/libs/hwui/
H A DTextureCache.cpp174 void TextureCache::remove(SkBitmap* bitmap) { function in class:android::uirenderer::TextureCache
175 mCache.remove(bitmap);
187 mCache.remove(mGarbage.itemAt(i));
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DImportTestProvider.java104 actualContentValues.remove(key);
113 actualContentValues.remove(Data.RAW_CONTACT_ID);
130 TestCase.assertTrue(contentValuesCollection.remove(expectedContentValues));
/frameworks/support/v4/java/android/support/v4/content/
H A DLocalBroadcastManager.java165 ArrayList<IntentFilter> filters = mReceivers.remove(receiver);
177 receivers.remove(k);
182 mActions.remove(action);
/frameworks/base/core/tests/hosttests/test-apps/DownloadManagerTestApp/src/com/android/frameworks/downloadmanagertests/
H A DDownloadManagerTestApp.java213 mDownloadManager.remove(dlRequest);
254 mDownloadManager.remove(dlRequest);
329 mDownloadManager.remove(dlRequest);
397 mDownloadManager.remove(dlRequest);
468 mDownloadManager.remove(dlRequest);
/frameworks/base/services/java/com/android/server/
H A DNativeDaemonConnector.java330 event = mResponseQueue.remove(sequenceNumber, timeout, sentCmd);
494 // The availableResponseCount member is used to track when we can remove this
499 // (it goes to zero) we can remove this object from the mPendingCmds list.
537 PendingCmd pendingCmd = mPendingCmds.remove();
546 // if a matching remove call has already retrieved this we can remove this
548 if (found.availableResponseCount == 0) mPendingCmds.remove(found);
557 public NativeDaemonEvent remove(int cmdNum, int timeoutMs, String origCmd) { method in class:NativeDaemonConnector.ResponseQueue
571 // if a matching add call has already retrieved this we can remove this
573 if (found.availableResponseCount == 0) mPendingCmds.remove(foun
[all...]
/frameworks/base/core/java/android/app/
H A DLoadedApk.java531 mReceivers.remove(context);
554 mUnregisteredReceivers.remove(context);
557 mServices.remove(context);
579 mUnboundServices.remove(context);
621 map.remove(r);
623 mReceivers.remove(context);
885 map.remove(c);
888 mServices.remove(context);
1037 old = mActiveConnections.remove(name);
1081 mActiveConnections.remove(nam
[all...]
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/view/
H A DViewPropertyAnimator.java185 mNameValuesHolder.remove(i);
938 mAnimatorSetupMap.remove(animation);
945 mAnimatorOnStartMap.remove(animation);
958 mAnimatorOnEndMap.remove(animation);
980 mAnimatorOnEndMap.remove(animation);
987 mAnimatorCleanupMap.remove(animation);
989 mAnimatorMap.remove(animation);
/frameworks/native/libs/utils/tests/
H A DBasicHashtable_test.cpp134 static bool remove(BasicHashtable<TKey, key_value_pair_t<TKey, TValue> >& h, function in namespace:android
229 ASSERT_TRUE(remove(h, 8));
256 ASSERT_TRUE(remove(h, int(i))) << "i = " << i;
295 ASSERT_TRUE(remove(h, K)) << "i = " << i;
353 ASSERT_TRUE(remove(h, ComplexKey(0)));
356 ASSERT_TRUE(remove(h, ComplexKey(1)));
461 ASSERT_TRUE(remove(h, ComplexKey(0)));
554 // remove copies shared contents
/frameworks/base/core/java/com/android/internal/view/menu/
H A DMenuBuilder.java209 * you do not need to explicitly remove a presenter, but you can using
224 * @param presenter The presenter to remove
230 mPresenters.remove(ref);
242 mPresenters.remove(ref);
258 mPresenters.remove(ref);
274 mPresenters.remove(ref);
297 mPresenters.remove(ref);
501 mItems.remove(index);
919 mPresenters.remove(ref);
1046 mPresenters.remove(re
[all...]
/frameworks/base/services/java/com/android/server/am/
H A DActiveServices.java167 ServiceRecord removed = getServices(callingUser).remove(name);
175 ServiceRecord removed = getServicesByIntent(callingUser).remove(filter);
336 ServiceRecord.StartItem cur = r.deliveredStarts.remove(0);
765 mPendingServices.remove(i);
963 mRestartingServices.remove(r);
987 mRestartingServices.remove(r);
1108 app.services.remove(r);
1135 ServiceRecord.StartItem si = r.pendingStarts.remove(0);
1258 mPendingServices.remove(i);
1278 r.app.services.remove(
[all...]
/frameworks/base/core/java/android/net/
H A DLinkProperties.java282 if (! result.removed.remove(newAddress)) {
313 if (! result.removed.remove(newAddress)) {
343 if (! result.removed.remove(r)) {
/frameworks/base/core/tests/coretests/src/android/app/
H A DDownloadManagerFunctionalTest.java100 mDownloadManager.remove(dlRequest);
113 mDownloadManager.remove(dlRequest);
120 * Note that this also calls the Download manager's remove, which cleans up the file from cache.
122 * @param requestId The id of the download to remove
303 * Tests that we can remove a download from the download manager.
314 mDownloadManager.remove(dlRequest);
/frameworks/base/libs/hwui/utils/
H A DSortedList.h88 ssize_t remove(const TYPE&);
195 inline ssize_t SortedList<TYPE>::remove(const TYPE& item) {
196 return SortedListImpl::remove(&item);
/frameworks/native/include/utils/
H A DSortedVector.h119 ssize_t remove(const TYPE&);
121 //! remove several items
123 //! remove one item
231 ssize_t SortedVector<TYPE>::remove(const TYPE& item) { function in class:android::SortedVector
232 return SortedVectorImpl::remove(&item);
/frameworks/wilhelm/src/itf/
H A DIDynamicInterfaceManagement.c234 // Mark operation pending (not necessary; remove is synchronous with mutex locked)
245 // The remove hook is called with mutex locked
246 VoidHook remove = MPH_init_table[MPH].mRemove; local
247 if (NULL != remove) {
248 (*remove)(thisItf);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTicker.java210 // If there's already a notification schedule for this package and id, remove it.
215 mSegments.remove(i--); // restart iteration here
242 mSegments.remove(i);
274 mSegments.remove(0);
/frameworks/base/core/java/android/animation/
H A DLayoutTransition.java45 * the same add/remove logic. The animations that run due to those events are one that animates
47 * items in the container that change due to the add/remove occurrence. Users of
60 * animation to remove it will run first, then the animations of the other children in the
226 * remove these listeners and clear out the map.
321 * added/remove/hidden/shown in the container, and runs the animations associated with
828 // add/remove operations are run at once on a container; each one will trigger
856 pendingAnimations.remove(child);
871 pendingAnimations.remove(child);
927 pendingAnimations.remove(child);
937 layoutChangeListenerMap.remove(chil
[all...]
/frameworks/base/core/java/android/app/backup/
H A DBackupAgent.java247 filterSet.remove(filesDir);
251 filterSet.remove(databaseDir);
255 filterSet.remove(sharedPrefsDir);
346 File file = scanQueue.remove(0);
/frameworks/base/core/java/android/content/
H A DClipboardManager.java175 mPrimaryClipChangedListeners.remove(what);
/frameworks/base/core/java/android/database/
H A DCursorJoiner.java190 public void remove() { method in class:CursorJoiner
/frameworks/base/core/java/android/os/
H A DFileObserver.java117 m_observers.remove(wfd);
H A DTokenWatcher.java93 Death d = mTokens.remove(token);
/frameworks/base/core/java/android/webkit/
H A DByteArrayBuilder.java107 sPool.remove(entry);
117 // Process any queued references and remove them from the pool.

Completed in 2745 milliseconds

1234567891011>>