Searched defs:list (Results 1 - 25 of 141) sorted by relevance

123456

/packages/apps/Contacts/src/com/android/contacts/list/
H A DOnEmailAddressPickerActionListener.java16 package com.android.contacts.list;
H A DOnPostalAddressPickerActionListener.java16 package com.android.contacts.list;
H A DContactTileFrequentFragment.java16 package com.android.contacts.list;
27 * Fragment containing a list of frequently contacted people.
H A DContactsIntentResolver.java17 package com.android.contacts.list;
H A DOnContactsUnavailableActionListener.java16 package com.android.contacts.list;
H A DOnMultiplePhoneNumberPickerActionListener.java16 package com.android.contacts.list;
H A DContactNameHighlightingAnimation.java16 package com.android.contacts.list;
21 import com.android.contacts.common.list.ContactListItemView;
26 * list item.
38 * Redraws all visible items of the list corresponding to contacts
H A DGroupMemberTileAdapter.java17 package com.android.contacts.list;
23 import com.android.contacts.common.list.ContactEntry;
24 import com.android.contacts.common.list.ContactTileAdapter;
25 import com.android.contacts.common.list.ContactTileView;
H A DLegacyPhoneNumberPickerFragment.java17 package com.android.contacts.list;
22 import com.android.contacts.common.list.ContactEntryListAdapter;
23 import com.android.contacts.common.list.ContactListItemView;
24 import com.android.contacts.common.list.PhoneNumberPickerFragment;
H A DOnContactBrowserActionListener.java16 package com.android.contacts.list;
21 * Action callbacks that can be sent by a contact list.
69 * Invoked if the requested selected contact is not found in the list.
H A DOnContactPickerActionListener.java16 package com.android.contacts.list;
/packages/apps/Dialer/src/com/android/dialer/list/
H A DOnListFragmentScrolledListener.java17 package com.android.dialer.list;
H A DAllContactsActivity.java16 package com.android.dialer.list;
30 import com.android.contacts.common.list.OnPhoneNumberPickerActionListener;
/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
H A DContactTileFrequentView.java16 package com.android.contacts.common.list;
24 * A {@link com.android.contacts.common.list.ContactTileView} that is used for most frequently contacted in the People app
H A DContactTileStarredView.java16 package com.android.contacts.common.list;
24 * {@link com.android.contacts.common.list.ContactTileAdapter.ContactTileRow}.
H A DAutoScrollListView.java17 package com.android.contacts.common.list;
31 * Position the element at about 1/3 of the list height
54 * scrolling without actually traversing the entire list. If smooth scrolling is
89 // We will first position the list a couple of screens before or after
H A DContactTilePhoneFrequentView.java16 package com.android.contacts.common.list;
27 * A dark version of the {@link com.android.contacts.common.list.ContactTileView} that is used in Dialtacts
H A DContactTilePhoneStarredView.java16 package com.android.contacts.common.list;
H A DOnPhoneNumberPickerActionListener.java16 package com.android.contacts.common.list;
H A DProfileAndContactsLoader.java16 package com.android.contacts.common.list;
31 * A loader for use in the default contact list, which will also query for the user's profile
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapMessageListing.java32 private List<BluetoothMapMessageListingElement> list; field in class:BluetoothMapMessageListing
35 list = new ArrayList<BluetoothMapMessageListingElement>();
38 list.add(element);
39 /* update info regarding whether the list contains unread messages */
47 * Used to fetch the number of BluetoothMapMessageListingElement elements in the list.
48 * @return the number of elements in the list.
51 if(list != null)
53 return list.size();
59 * does the list contain any unread messages
60 * @return true if unread messages have been added to the list, els
[all...]
/packages/apps/Camera/src/com/android/camera/
H A DPreferenceGroup.java29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {
/packages/apps/Camera2/src/com/android/camera/
H A DPreferenceGroup.java29 private ArrayList<CameraPreference> list = field in class:PreferenceGroup
37 list.add(child);
41 list.remove(index);
45 return list.get(index);
49 return list.size();
54 for (CameraPreference pref : list) {
67 for (CameraPreference pref : list) {
/packages/apps/ContactsCommon/src/com/android/contacts/common/
H A DCollapser.java25 * function that takes an ArrayList of items and returns a list of the same items collapsed into
51 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
55 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
57 public static <T extends Collapsible<T>> void collapseList(List<T> list) { argument
59 int listSize = list.size();
66 T iItem = list.get(i);
69 T jItem = list.get(j);
73 list.set(j, null);
76 list
[all...]
/packages/apps/Dialer/src/com/android/dialer/dialpad/
H A DSmartDialMatchPosition.java62 * @param list ArrayList of SmartDialMatchPositions to print out in a human readable fashion.
64 public static void print(ArrayList<SmartDialMatchPosition> list) { argument
65 for (int i = 0; i < list.size(); i ++) {
66 SmartDialMatchPosition m = list.get(i);

Completed in 542 milliseconds

123456