HomeSort by relevance Sort by last modified time
    Searched refs:ArrayList (Results 751 - 775 of 7518) sorted by null

<<31323334353637383940>>

  /packages/apps/DocumentsUI/src/com/android/documentsui/
OperationDialogFragment.java 38 import java.util.ArrayList;
63 ArrayList<DocumentInfo> failedSrcList,
64 ArrayList<Uri> uriList,
90 final ArrayList<Uri> uriList = getArguments().getParcelableArrayList(
92 final ArrayList<DocumentInfo> docList = getArguments().getParcelableArrayList(
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorGridDialog.java 29 import java.util.ArrayList;
41 ArrayList<Button> b = getButtons((ViewGroup) getWindow().getDecorView());
73 private ArrayList<Button> getButtons(ViewGroup vg) {
74 ArrayList<Button> list = new ArrayList<Button>();
  /packages/apps/Launcher3/src/com/android/launcher3/
FolderInfo.java 24 import java.util.ArrayList;
53 public ArrayList<ShortcutInfo> contents = new ArrayList<ShortcutInfo>();
55 ArrayList<FolderListener> listeners = new ArrayList<FolderListener>();
AllAppsList.java 28 import java.util.ArrayList;
40 public ArrayList<AppInfo> data =
41 new ArrayList<AppInfo>(DEFAULT_APPLICATIONS_NUMBER);
43 public ArrayList<AppInfo> added =
44 new ArrayList<AppInfo>(DEFAULT_APPLICATIONS_NUMBER);
46 public ArrayList<AppInfo> removed = new ArrayList<AppInfo>();
48 public ArrayList<AppInfo> modified = new ArrayList<AppInfo>();
139 ArrayList<AppInfo> outUpdates)
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/allapps/
DefaultAppSearchAlgorithm.java 23 import java.util.ArrayList;
47 final ArrayList<ComponentKey> result = getTitleMatchResult(query);
57 protected ArrayList<ComponentKey> getTitleMatchResult(String query) {
61 final ArrayList<ComponentKey> result = new ArrayList<>();
  /packages/apps/Launcher3/src/com/android/launcher3/model/
CacheDataUpdatedTask.java 32 import java.util.ArrayList;
57 final ArrayList<AppInfo> updatedApps = new ArrayList<>();
59 ArrayList<ShortcutInfo> updatedShortcuts = new ArrayList<>();
UserLockStateChangedTask.java 34 import java.util.ArrayList;
73 ArrayList<ShortcutInfo> updatedShortcutInfos = new ArrayList<>();
74 ArrayList<ShortcutInfo> deletedShortcutInfos = new ArrayList<>();
  /packages/apps/Launcher3/src/com/android/launcher3/provider/
LauncherDbUtils.java 30 import java.util.ArrayList;
50 ArrayList<Long> screenIds = getScreenIdsFromCursor(db.query(WorkspaceScreens.TABLE_NAME,
106 public static ArrayList<Long> getScreenIdsFromCursor(Cursor sc) {
107 ArrayList<Long> screenIds = new ArrayList<Long>();
  /packages/apps/Settings/src/com/android/settings/
TimeoutListPreference.java 29 import java.util.ArrayList;
86 ArrayList<CharSequence> revisedEntries = new ArrayList<CharSequence>();
87 ArrayList<CharSequence> revisedValues = new ArrayList<CharSequence>();
  /packages/apps/Settings/src/com/android/settings/search/
BaseSearchIndexProvider.java 35 import java.util.ArrayList;
45 private static final List<String> EMPTY_LIST = new ArrayList<>();
69 final List<String> nonIndexableKeys = new ArrayList<>();
75 return new ArrayList<>();
98 final List<String> nonIndexableKeys = new ArrayList<>();
  /packages/apps/StorageManager/robotests/src/com/android/storagemanager/deletionhelper/
AppDeletionTypeTest.java 30 import java.util.ArrayList;
58 List<AppsAsyncLoader.PackageInfo> loadedPackages = new ArrayList<>();
77 List<AppsAsyncLoader.PackageInfo> loadedPackages = new ArrayList<>();
109 List<AppsAsyncLoader.PackageInfo> apps = new ArrayList<>();
117 List<AppsAsyncLoader.PackageInfo> apps = new ArrayList<>();
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
ContactsContentObserverTest.java 35 import java.util.ArrayList;
44 private static final ArrayList<String> STALE_NAMES_LIST = new ArrayList<>();
45 private static final ArrayList<String> UPDATED_NAMES_LIST = new ArrayList<>();
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
Test.java 30 import java.util.ArrayList;
56 private ArrayList<Method> mAllTestMethods = new ArrayList<>();
57 private ArrayList<String> mUsedTestMethods = new ArrayList<>();
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
JarUtils.java 25 import java.util.ArrayList;
63 public static ArrayList<String> getEntryNameListing(final JarFile jar, final JarFilter filter) {
64 final ArrayList<String> result = new ArrayList<>();
79 public static ArrayList<String> getEntryNameListing(final JarFile jar,
  /packages/services/Telecomm/tests/src/com/android/server/telecom/tests/
ProximitySensorManagerTest.java 29 import java.util.ArrayList;
61 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>(){{
73 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>());
93 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>(){{
105 when(mCallsManager.getCalls()).thenReturn(new ArrayList<Call>());
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
CheckableListAdapter.java 28 import java.util.ArrayList;
85 ArrayList<Integer> checkedPositions = new ArrayList<Integer>();
104 ArrayList<CheckableItem> newList = new ArrayList<CheckableItem>();
  /libcore/ojluni/src/main/java/java/util/
ArrayList.java 48 * <p>Each <tt>ArrayList</tt> instance has a <i>capacity</i>. The capacity is
50 * at least as large as the list size. As elements are added to an ArrayList,
55 * <p>An application can increase the capacity of an <tt>ArrayList</tt> instance
60 * If multiple threads access an <tt>ArrayList</tt> instance concurrently,
72 * List list = Collections.synchronizedList(new ArrayList(...));</pre>
115 * Fix ConcurrentModificationException in ArrayList iterators.
119 public class ArrayList<E> extends AbstractList<E>
142 * The array buffer into which the elements of the ArrayList are stored.
143 * The capacity of the ArrayList is the length of this array buffer. Any
144 * empty ArrayList with elementData == DEFAULTCAPACITY_EMPTY_ELEMENTDAT
    [all...]
  /external/doclava/src/com/google/doclava/
ClassInfo.java 23 import java.util.ArrayList;
115 boolean isIncluded, String qualifiedTypeName, boolean isPrimitive, ArrayList<AnnotationInstanceInfo> annotations) {
140 public void init(TypeInfo typeInfo, ArrayList<ClassInfo> interfaces,
141 ArrayList<TypeInfo> interfaceTypes, ArrayList<ClassInfo> innerClasses,
142 ArrayList<MethodInfo> constructors, ArrayList<MethodInfo> methods,
143 ArrayList<MethodInfo> annotationElements, ArrayList<FieldInfo> fields,
144 ArrayList<FieldInfo> enumConstants, PackageInfo containingPackage
    [all...]
ClearPage.java 29 import java.util.ArrayList;
40 private static ArrayList<String> mTemplateDirs = new ArrayList<String>();
43 private static ArrayList<String> mBundledTemplateDirs = new ArrayList<String>();
46 public static List<String> htmlDirs = new ArrayList<String>();
224 public static ArrayList<String> DROIDDOC_VALID_CONTENT_TYPES = new ArrayList<String>(Arrays.asList(".txt", ".css",
229 public static ArrayList<String> DROIDDOC_EXCEPTED_CONTENT_TYPES = new ArrayList<String>(Arrays.asList(""))
    [all...]
  /art/tools/dexfuzz/src/dexfuzz/rawdex/
MapList.java 22 import java.util.ArrayList;
47 mapItems = new ArrayList<MapItem>(size);
114 rawDexFile.typeLists = new ArrayList<TypeList>(mapItem.size);
123 new ArrayList<AnnotationSetRefList>(mapItem.size);
131 rawDexFile.annotationSetItems = new ArrayList<AnnotationSetItem>(mapItem.size);
139 rawDexFile.classDatas = new ArrayList<ClassDataItem>(mapItem.size);
147 rawDexFile.codeItems = new ArrayList<CodeItem>(mapItem.size);
155 rawDexFile.stringDatas = new ArrayList<StringDataItem>(mapItem.size);
178 rawDexFile.annotationItems = new ArrayList<AnnotationItem>(mapItem.size);
186 rawDexFile.encodedArrayItems = new ArrayList<EncodedArrayItem>(mapItem.size)
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_StatusUpdatesTest.java 32 import java.util.ArrayList;
47 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
103 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
119 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
128 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
138 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>()
    [all...]
  /frameworks/base/services/core/java/com/android/server/media/
MediaSessionStack.java 29 import java.util.ArrayList;
76 private final List<MediaSessionRecord> mSessions = new ArrayList<MediaSessionRecord>();
93 private final SparseArray<ArrayList<MediaSessionRecord>> mCachedActiveLists =
242 public ArrayList<MediaSessionRecord> getActiveSessions(int userId) {
243 ArrayList<MediaSessionRecord> cachedActiveList = mCachedActiveLists.get(userId);
271 ArrayList<MediaSessionRecord> records = getPriorityList(true, UserHandle.USER_ALL);
284 ArrayList<MediaSessionRecord> records = getPriorityList(true, userId);
297 ArrayList<MediaSessionRecord> sortedSessions = getPriorityList(false,
324 public ArrayList<MediaSessionRecord> getPriorityList(boolean activeOnly, int userId) {
325 ArrayList<MediaSessionRecord> result = new ArrayList<MediaSessionRecord>()
    [all...]
  /frameworks/support/fragment/java/android/support/v4/app/
FragmentTransition.java 27 import java.util.ArrayList;
84 ArrayList<BackStackRecord> records, ArrayList<Boolean> isRecordPop,
142 ArrayList<BackStackRecord> records, ArrayList<Boolean> isRecordPop,
153 final ArrayList<String> sources;
154 final ArrayList<String> targets;
208 ArrayList<View> sharedElementsIn = new ArrayList<>();
209 ArrayList<View> sharedElementsOut = new ArrayList<>()
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/util/
StateMachine.java 21 import java.util.ArrayList;
141 ArrayList<Transition> mIncomings;
142 ArrayList<Transition> mOutgoings;
171 mIncomings = new ArrayList();
178 mOutgoings = new ArrayList();
256 final ArrayList<State> mStates = new ArrayList<State>();
257 final ArrayList<State> mFinishedStates = new ArrayList();
258 final ArrayList<State> mUnfinishedStates = new ArrayList()
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
FilterDeleteSet.java 19 import java.util.ArrayList;
62 private ArrayList<Request> mRequests = new ArrayList<Request>();
65 private ArrayList<Deletion> mCurrent = new ArrayList<Deletion>();
113 public ArrayList<MediaItem> getMediaItem(int start, int count) {
114 if (count <= 0) return new ArrayList<MediaItem>();
133 ArrayList<MediaItem> base = mBaseSet.getMediaItem(start + i, count + (j - i));
202 ArrayList<MediaItem> items = mBaseSet.getMediaItem(from, to - from);
203 ArrayList<Deletion> result = new ArrayList<Deletion>()
    [all...]

Completed in 602 milliseconds

<<31323334353637383940>>