Home
last modified time | relevance | path

Searched refs:collection (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/inputmethod/
DKeyboardLayoutDialogFragment.java231 String label, collection; in getView() local
234 collection = item.getCollection(); in getView()
237 collection = ""; in getView()
241 if (collection.isEmpty()) { in getView()
244 return inflateTwoLine(convertView, parent, label, collection, checked); in getView()
264 String label, String collection, boolean checked) { in inflateTwoLine() argument
277 subText.setText(collection); in inflateTwoLine()
/packages/apps/Mms/src/com/android/mms/model/
DSlideModel.java282 public boolean addAll(Collection<? extends MediaModel> collection) { in addAll() argument
313 public boolean containsAll(Collection<?> collection) { in containsAll() argument
314 return mMedia.containsAll(collection); in containsAll()
334 public boolean removeAll(Collection<?> collection) { in removeAll() argument
338 public boolean retainAll(Collection<?> collection) { in retainAll() argument
359 Collection<? extends MediaModel> collection) { in addAll() argument
DSlideshowModel.java389 public boolean addAll(Collection<? extends SlideModel> collection) { in addAll() argument
411 public boolean containsAll(Collection<?> collection) { in containsAll() argument
412 return mSlides.containsAll(collection); in containsAll()
434 public boolean removeAll(Collection<?> collection) { in removeAll() argument
438 public boolean retainAll(Collection<?> collection) { in retainAll() argument
470 Collection<? extends SlideModel> collection) { in addAll() argument
/packages/apps/Contacts/tests/src/com/android/contacts/editor/
DContactEditorUtilsTest.java295 private static <T> Set<T> toSet(Collection<T> collection) { in toSet() argument
297 ret.addAll(collection); in toSet()
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
DUtility.java959 public static long[] toPrimitiveLongArray(Collection<Long> collection) {
962 final int size = collection.size();
966 for (Long value : collection) {