/packages/apps/Contacts/src/com/android/contacts/list/ |
H A D | OnEmailAddressPickerActionListener.java | 16 package com.android.contacts.list;
|
H A D | OnPostalAddressPickerActionListener.java | 16 package com.android.contacts.list;
|
H A D | ContactListPinnedHeaderView.java | 17 package com.android.contacts.list; 31 * A custom view for the pinned section header shown at the top of the contact list.
|
H A D | ContactsIntentResolver.java | 17 package com.android.contacts.list;
|
H A D | OnMultiplePhoneNumberPickerActionListener.java | 16 package com.android.contacts.list;
|
H A D | EnableGlobalSyncDialogFragment.java | 17 package com.android.contacts.list; 43 * @param filter the filter of current contacts list.
|
H A D | FavoritesAndContactsLoader.java | 16 package com.android.contacts.list; 31 * A loader for use in the default contact list, which will also query for favorite contacts
|
H A D | OnContactBrowserActionListener.java | 16 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 D | OnContactPickerActionListener.java | 16 package com.android.contacts.list;
|
H A D | OnPhoneNumberPickerActionListener.java | 16 package com.android.contacts.list;
|
/packages/apps/Dialer/java/com/android/dialer/searchfragment/list/ |
H A D | HeaderViewHolder.java | 17 package com.android.dialer.searchfragment.list;
|
/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/ |
H A D | CameraDeviceProxy.java | 38 public void createCaptureSession(List<Surface> list, argument
|
/packages/apps/Contacts/src/com/android/contacts/ |
H A D | Collapser.java | 27 * 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 D | ContactListItemViewTest.java | 17 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 D | Collapser.java | 26 * 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 D | ContactListPinnedHeaderView.java | 17 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 D | OnPhoneNumberPickerActionListener.java | 16 package com.android.contacts.common.list;
|
/packages/apps/Dialer/java/com/android/dialer/app/list/ |
H A D | ContentChangedFilter.java | 17 package com.android.dialer.app.list;
|
H A D | DialerViewPager.java | 17 package com.android.dialer.app.list;
|
H A D | OnDragDropListener.java | 17 package com.android.dialer.app.list;
|
H A D | OnListFragmentScrolledListener.java | 17 package com.android.dialer.app.list;
|
/packages/apps/Dialer/java/com/android/dialer/smartdial/ |
H A D | SmartDialMatchPosition.java | 57 * @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 D | PreferenceGroup.java | 29 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 D | AppLister.java | 32 * 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 D | ThemePreferenceControllerTest.java | 88 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;
|