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

12345678

/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 DContactListPinnedHeaderView.java17 package com.android.contacts.list;
31 * A custom view for the pinned section header shown at the top of the contact list.
H A DContactsIntentResolver.java17 package com.android.contacts.list;
H A DOnMultiplePhoneNumberPickerActionListener.java16 package com.android.contacts.list;
H A DEnableGlobalSyncDialogFragment.java17 package com.android.contacts.list;
43 * @param filter the filter of current contacts list.
H A DFavoritesAndContactsLoader.java16 package com.android.contacts.list;
31 * A loader for use in the default contact list, which will also query for favorite contacts
H A DOnContactBrowserActionListener.java16 package com.android.contacts.list;
21 * Action callbacks that can be sent by a contact list.
50 * Invoked if the requested selected contact is not found in the list.
H A DOnContactPickerActionListener.java16 package com.android.contacts.list;
H A DOnPhoneNumberPickerActionListener.java16 package com.android.contacts.list;
/packages/apps/Dialer/java/com/android/dialer/searchfragment/list/
H A DHeaderViewHolder.java17 package com.android.dialer.searchfragment.list;
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DCameraDeviceProxy.java38 public void createCaptureSession(List<Surface> list, argument
/packages/apps/Contacts/src/com/android/contacts/
H A DCollapser.java27 * function that takes an ArrayList of items and returns a list of the same items collapsed into
54 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed
58 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
60 public static <T extends Collapsible<T>> void collapseList(List<T> list, Context context) { argument
62 int listSize = list.size();
69 T iItem = list.get(i);
72 T jItem = list.get(j);
76 list.set(j, null);
79 list
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/list/
H A DContactListItemViewTest.java17 package com.android.contacts.list;
30 * Unit tests for {@link com.android.contacts.list.ContactListItemView}.
/packages/apps/Dialer/java/com/android/contacts/common/
H A DCollapser.java26 * function that takes an ArrayList of items and returns a list of the same items collapsed into
43 * Collapses a list of Collapsible items into a list of collapsed items. Items are collapsed if
47 * @param list List of Objects of type <T extends Collapsible<T>> to be collapsed.
49 public static <T extends Collapsible<T>> void collapseList(List<T> list, Context context) { argument
51 int listSize = list.size();
58 T iItem = list.get(i);
61 T jItem = list.get(j);
65 list.set(j, null);
68 list
[all...]
/packages/apps/Dialer/java/com/android/contacts/common/list/
H A DContactListPinnedHeaderView.java17 package com.android.contacts.common.list;
30 /** A custom view for the pinned section header shown at the top of the contact list. */
H A DOnPhoneNumberPickerActionListener.java16 package com.android.contacts.common.list;
/packages/apps/Dialer/java/com/android/dialer/app/list/
H A DContentChangedFilter.java17 package com.android.dialer.app.list;
H A DDialerViewPager.java17 package com.android.dialer.app.list;
H A DOnDragDropListener.java17 package com.android.dialer.app.list;
H A DOnListFragmentScrolledListener.java17 package com.android.dialer.app.list;
/packages/apps/Dialer/java/com/android/dialer/smartdial/
H A DSmartDialMatchPosition.java57 * @param list ArrayList of SmartDialMatchPositions to print out in a human readable fashion.
59 public static void print(ArrayList<SmartDialMatchPosition> list) { argument
60 for (int i = 0; i < list.size(); i++) {
61 SmartDialMatchPosition m = list.get(i);
/packages/apps/LegacyCamera/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/Settings/src/com/android/settings/applications/
H A DAppLister.java32 * This class is similar to {@link AppCounter} class, but but builds actual list of apps instead
48 final List<ApplicationInfo> list =
53 for (ApplicationInfo info : list) {
63 protected void onPostExecute(List<UserAppInfo> list) { argument
64 onAppListBuilt(list);
67 protected abstract void onAppListBuilt(List<UserAppInfo> list); argument
/packages/apps/Settings/tests/unit/src/com/android/settings/display/
H A DThemePreferenceControllerTest.java88 list(info1, info2));
127 list(info1, info2));
149 .thenReturn(list(new OverlayInfo("", "", "", 0, 0)));
158 .thenReturn(list(new OverlayInfo("", "", "", 0, 0),
163 private ArrayList<OverlayInfo> list(OverlayInfo... infos) { method in class:ThemePreferenceControllerTest
164 ArrayList<OverlayInfo> list = new ArrayList<>();
166 list.add(infos[i]);
168 return list;

Completed in 1656 milliseconds

12345678