Searched defs:remove (Results 1 - 25 of 49) sorted by relevance

12

/packages/apps/Mms/src/com/android/mms/util/
H A DSendingProgressTokenManager.java51 synchronized public static void remove(Object key) { method in class:SendingProgressTokenManager
53 Log.v(TAG, "TokenManager.remove(" + key + ")");
55 TOKEN_POOL.remove(key);
H A DSimpleCache.java128 * See {@link Map#remove(Object)}.
130 public V remove(K key) { method in class:SimpleCache
132 return unwrap(mSoftReferences.remove(key));
134 return mHardReferences.remove(key);
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DLinkedNode.java35 public void remove() { method in class:LinkedNode
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DLineIterator.java116 * @return true if valid, false to remove from the iterator
165 public void remove() { method in class:LineIterator
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
H A DUnboundedFifoByteBuffer.java34 * The {@link #remove()} and {@link #get()} operations perform in constant time.
171 public byte remove() { method in class:UnboundedFifoByteBuffer
239 public void remove() {
246 UnboundedFifoByteBuffer.this.remove();
/packages/apps/Camera2/src/com/android/camera/data/
H A DLocalDataList.java57 public LocalData remove(int index) { method in class:LocalDataList
58 LocalData removedItem = mList.remove(index);
59 mUriMap.remove(removedItem);
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/
H A DTweener.java44 private static void remove(Animator animator) { method in class:Tweener
51 iter.remove();
140 // Listener to watch for completed animations and remove them.
145 remove(animation);
150 remove(animation);
173 sTweens.remove(tween);
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
H A DBuffer.java90 public void remove() { method in class:Buffer
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStateAdapter.java109 public void remove(State state) { method in class:StateAdapter
110 super.remove(state);
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
H A DTweener.java44 private static void remove(Animator animator) { method in class:Tweener
51 iter.remove();
140 // Listener to watch for completed animations and remove them.
145 remove(animation);
150 remove(animation);
173 sTweens.remove(tween);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFolderInfo.java62 public void remove(ShortcutInfo item) { method in class:FolderInfo
63 contents.remove(item);
89 listeners.remove(listener);
H A DIconCache.java134 public void remove(ComponentName componentName) { method in class:IconCache
136 mCache.remove(componentName);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DFolderInfo.java62 public void remove(ShortcutInfo item) { method in class:FolderInfo
63 contents.remove(item);
89 listeners.remove(listener);
H A DIconCache.java136 public void remove(ComponentName componentName) { method in class:IconCache
138 mCache.remove(componentName);
160 it.remove();
/packages/apps/UnifiedEmail/src/com/android/mail/utils/
H A DObservableSparseArrayCompat.java69 public void remove(final int key) { method in class:ObservableSparseArrayCompat
70 super.remove(key);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DPrioritizedSerialExecutor.java123 public void remove(final Runnable r) { method in class:PrioritizedSerialExecutor
125 mTasks.remove(r);
126 mPrioritizedTasks.remove(r);
132 if (oldTask != null) remove(oldTask);
/packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
H A DContextMap.java124 void remove(int id) { method in class:ContextMap
131 i.remove();
159 i.remove();
267 i.remove();
/packages/apps/Calendar/tests/src/com/android/calendar/
H A DFakeSharedPreferences.java144 public Editor remove(String key) { method in class:FakeSharedPreferences
145 mTempValues.remove(key);
/packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
H A DMockSharedPreferences.java130 public Editor remove(String key) { method in class:MockSharedPreferences
131 mTempValues.remove(key);
/packages/apps/Dialer/tests/src/com/android/dialer/util/
H A DFakeAsyncTaskExecutor.java206 Object identifier, boolean remove) {
215 iter.remove();
205 getSubmittedTasksByIdentifier( Object identifier, boolean remove) argument
/packages/apps/Email/tests/src/com/android/email/
H A DMockSharedPreferences.java132 public Editor remove(String key) { method in class:MockSharedPreferences
133 mTempValues.remove(key);
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DBuilder.java226 public void remove() { method in class:Builder.ChildNodeIterator
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
H A DPointerTrackerQueue.java65 public void remove(final Element pointer) { method in class:PointerTrackerQueue
68 Log.d(TAG, "remove: " + pointer + " " + this);
77 Log.w(TAG, "Found duplicated element in remove: " + pointer);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
H A DSparseTable.java128 public void remove(final int indexOfContent, final int index) { method in class:SparseTable
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DPhotoStore.java151 remove(key);
236 public void remove(long id) { method in class:PhotoStore
271 mEntries.remove(id);

Completed in 559 milliseconds

12