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

1234567891011>>

/frameworks/base/core/java/android/view/
H A DViewGroupOverlay.java59 * @see #remove(View)
71 * @see ViewOverlay#remove(Drawable)
73 public void remove(View view) { method in class:ViewGroupOverlay
74 mOverlayViewGroup.remove(view);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DKeyStoreLruCache.java40 mTaskKeys.remove(taskId);
58 remove(key);
73 final void remove(Task.TaskKey key) { method in class:KeyStoreLruCache
74 mCache.remove(key.id);
75 mTaskKeys.remove(key.id);
/frameworks/base/core/java/android/app/
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 DIAlarmManager.aidl35 void remove(in PendingIntent operation);
/frameworks/volley/src/com/android/volley/toolbox/
H A DByteArrayPool.java96 mBuffersBySize.remove(i);
97 mBuffersByLastUse.remove(buf);
129 byte[] buf = mBuffersByLastUse.remove(0);
130 mBuffersBySize.remove(buf);
H A DNoCache.java43 public void remove(String key) { method in class:NoCache
/frameworks/base/core/java/android/service/fingerprint/
H A DIFingerprintService.aidl33 void remove(IBinder token, int fingerprintId, int userId);
/frameworks/compile/mclinker/lib/LD/
H A DRelocData.cpp56 Relocation& RelocData::remove(Relocation& pRelocation) function in class:RelocData
59 Relocation* rel = m_Relocations.remove(iter);
/frameworks/base/core/tests/coretests/src/android/app/activity/
H A DResultReceiver.java39 map.remove("remove");
/frameworks/base/tools/layoutlib/bridge/src/android/os/
H A DLooper_Accessor.java27 Looper.sThreadLocal.remove();
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
H A DStack.java53 return remove(size() - 1);
/frameworks/base/core/java/com/android/internal/app/
H A DProcessMap.java42 public void remove(String name, int uid) { method in class:ProcessMap
45 uids.remove(uid);
47 mMap.remove(name);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DArrayObjectAdapter.java116 * @param item The item to remove from the adapter.
119 public boolean remove(Object item) { method in class:ArrayObjectAdapter
122 mItems.remove(index);
130 * the starting position and the number of elements to remove.
132 * @param position The index of the first item to remove.
133 * @param count The number of items to remove.
140 mItems.remove(position);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DDefaultItemAnimator.java29 * animations on remove, add, and move events that happen to the items in
105 // First, remove stuff
124 mMovesList.remove(moves);
147 mChangesList.remove(changes);
169 mAdditionsList.remove(additions);
206 mRemoveAnimations.remove(holder);
240 mAddAnimations.remove(holder);
302 mMoveAnimations.remove(holder);
355 mChangeAnimations.remove(changeInfo.oldHolder);
375 mChangeAnimations.remove(changeInf
[all...]
H A DChildHelper.java113 * @param view The view to remove.
121 if (mBucket.remove(index)) {
122 mHiddenViews.remove(view);
125 Log.d(TAG, "remove View off:" + index + "," + this);
142 if (mBucket.remove(offset)) {
143 mHiddenViews.remove(view);
254 mBucket.remove(offset);
320 * @param view The view to remove.
326 if (mHiddenViews.remove(view) && DEBUG) {
332 mBucket.remove(inde
420 boolean remove(int index) { method in class:ChildHelper.Bucket
[all...]
/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;
/frameworks/base/core/java/android/os/
H A DRegistrantList.java37 // if the handler is already in the registrant list, remove it
38 remove(h);
56 registrants.remove(i);
108 remove(Handler h) method in class:RegistrantList
/frameworks/base/core/java/android/content/
H A DCursorEntityIterator.java90 public void remove() { method in class:CursorEntityIterator
91 throw new UnsupportedOperationException("remove not supported by EntityIterators");
/frameworks/base/core/java/android/database/
H A DObservable.java71 mObservers.remove(index);
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DMultiUserAvatarCache.java41 mCache.remove(userId);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DKeyguardMonitor.java33 mCallbacks.remove(callback);
/frameworks/volley/src/com/android/volley/
H A DCache.java57 public void remove(String key); method in interface:Cache
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DBaseCommands.java125 mRadioStateChangedRegistrants.remove(h);
135 mImsNetworkStateChangedRegistrants.remove(h);
153 mOnRegistrants.remove(h);
174 mAvailRegistrants.remove(h);
194 mNotAvailRegistrants.remove(h);
213 mOffOrNotAvailRegistrants.remove(h);
226 mCallStateRegistrants.remove(h);
238 mVoiceNetworkStateRegistrants.remove(h);
250 mDataNetworkStateRegistrants.remove(h);
261 mVoiceRadioTechChangedRegistrants.remove(
[all...]
/frameworks/av/media/libstagefright/webm/
H A DLinkedBlockingQueue.h32 T front(bool remove) { argument
38 if (remove) {
/frameworks/base/location/java/android/location/
H A DLocalListenerHelper.java71 public void remove(@NonNull TListener listener) { method in class:LocalListenerHelper
75 boolean removed = mListeners.remove(listener);

Completed in 602 milliseconds

1234567891011>>