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

<<31323334353637383940>>

  /frameworks/base/core/java/android/app/
FragmentTransition.java 31 import java.util.ArrayList;
88 ArrayList<BackStackRecord> records, ArrayList<Boolean> isRecordPop,
142 ArrayList<BackStackRecord> records, ArrayList<Boolean> isRecordPop,
153 final ArrayList<String> sources;
154 final ArrayList<String> targets;
207 ArrayList<View> sharedElementsIn = new ArrayList<>();
208 ArrayList<View> sharedElementsOut = new ArrayList<>()
    [all...]
  /libcore/ojluni/src/main/java/sun/util/locale/
LocaleMatcher.java 28 import java.util.ArrayList;
52 return new ArrayList<>(); // need to return a empty mutable List
56 List<String> tags = new ArrayList<>();
65 List<Locale> filteredLocales = new ArrayList<>(filteredTags.size());
77 return new ArrayList<>(); // need to return a empty mutable List
80 ArrayList<LanguageRange> list;
84 list = new ArrayList<>();
114 List<String> list = new ArrayList<>();
118 return new ArrayList<String>(tags);
138 List<String> list = new ArrayList<>();
    [all...]
  /packages/apps/Car/Dialer/src/com/android/car/dialer/
StrequentsItemAnimator.java 25 import java.util.ArrayList;
35 private ArrayList<ViewHolder> mPendingRemovals = new ArrayList<>();
36 private ArrayList<ViewHolder> mPendingAdditions = new ArrayList<>();
37 private ArrayList<MoveInfo> mPendingMoves = new ArrayList<>();
38 private ArrayList<ChangeInfo> mPendingChanges = new ArrayList<>();
40 private ArrayList<ArrayList<ViewHolder>> mAdditionsList = new ArrayList<>()
    [all...]
  /developers/build/prebuilts/gradle/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
MainActivityFragment.java 36 import java.util.ArrayList;
50 private ArrayList<File> mFiles;
125 private ArrayList<File> createListOfFiles() {
126 ArrayList<File> listOfFiles = new ArrayList<File>();
135 private void addFilesToList(ArrayList<File> listOfFiles, File dir) {
  /developers/build/prebuilts/gradle/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 28 import java.util.ArrayList;
57 ArrayList<RecipeStep> recipeSteps;
60 recipeSteps = new ArrayList<RecipeStep>();
102 ArrayList<Parcelable> stepBundles = new ArrayList<Parcelable>(recipeSteps.size());
117 ArrayList<Parcelable> stepBundles =
  /developers/samples/android/content/AutoBackupForApps/Application/src/main/java/com/example/android/autobackupsample/
MainActivityFragment.java 36 import java.util.ArrayList;
50 private ArrayList<File> mFiles;
125 private ArrayList<File> createListOfFiles() {
126 ArrayList<File> listOfFiles = new ArrayList<File>();
135 private void addFilesToList(ArrayList<File> listOfFiles, File dir) {
  /developers/samples/android/wearable/wear/RecipeAssistant/Application/src/main/java/com/example/android/wearable/recipeassistant/
Recipe.java 28 import java.util.ArrayList;
57 ArrayList<RecipeStep> recipeSteps;
60 recipeSteps = new ArrayList<RecipeStep>();
102 ArrayList<Parcelable> stepBundles = new ArrayList<Parcelable>(recipeSteps.size());
117 ArrayList<Parcelable> stepBundles =
  /development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
MainActivityFragment.java 36 import java.util.ArrayList;
50 private ArrayList<File> mFiles;
125 private ArrayList<File> createListOfFiles() {
126 ArrayList<File> listOfFiles = new ArrayList<File>();
135 private void addFilesToList(ArrayList<File> listOfFiles, File dir) {
  /development/samples/browseable/RecipeAssistant/Application/src/com.example.android.wearable.recipeassistant/
Recipe.java 28 import java.util.ArrayList;
57 ArrayList<RecipeStep> recipeSteps;
60 recipeSteps = new ArrayList<RecipeStep>();
102 ArrayList<Parcelable> stepBundles = new ArrayList<Parcelable>(recipeSteps.size());
117 ArrayList<Parcelable> stepBundles =
  /external/conscrypt/common/src/main/java/org/conscrypt/
CryptoUpcalls.java 25 import java.util.ArrayList;
51 private static ArrayList<Provider> getExternalProviders(String algorithm) {
52 ArrayList<Provider> providers = new ArrayList<>(1);
107 ArrayList<Provider> providers = getExternalProviders("Signature." + algorithm);
185 ArrayList<Provider> providers = getExternalProviders("Cipher." + transformation);
  /external/doclava/src/com/google/doclava/apicheck/
ApiInfo.java 23 import java.util.ArrayList;
38 private Map<ClassInfo, ArrayList<String>> mClassToInterface
39 = new HashMap<ClassInfo, ArrayList<String>>();
48 ArrayList<String> ifaces = mClassToInterface.get(cl);
99 newClsApis = new ArrayList<>();
147 mClassToInterface.put(classInfo, new ArrayList<String>());
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/check/
BundleChecker.java 14 import java.util.ArrayList;
49 this.bundleRules = new ArrayList<Rule>();
50 this.packageRules = new ArrayList<Rule>();
51 this.classRules = new ArrayList<Rule>();
52 this.sourceFileRules = new ArrayList<Rule>();
53 this.methodRules = new ArrayList<Rule>();
  /external/junit/src/main/java/org/junit/runner/
JUnitCommandLineParseResult.java 3 import java.util.ArrayList;
13 private final List<String> filterSpecs = new ArrayList<String>();
14 private final List<Class<?>> classes = new ArrayList<Class<?>>();
15 private final List<Throwable> parserErrors = new ArrayList<Throwable>();
88 ArrayList<String> result = new ArrayList<String>();
  /external/snakeyaml/src/test/java/examples/
DumpExampleTest.java 19 import java.util.ArrayList;
56 List<Integer> docs = new ArrayList<Integer>();
78 List<Integer> data = new ArrayList<Integer>();
95 List<Integer> data = new ArrayList<Integer>();
109 List<Integer> data = new ArrayList<Integer>();
123 List<Integer> data = new ArrayList<Integer>();
  /frameworks/base/core/java/android/content/
UriMatcher.java 21 import java.util.ArrayList;
133 mChildren = new ArrayList<UriMatcher>();
141 mChildren = new ArrayList<UriMatcher>();
180 ArrayList<UriMatcher> children = node.mChildren;
230 ArrayList<UriMatcher> list = node.mChildren;
278 private ArrayList<UriMatcher> mChildren;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
ViewInvertHelper.java 28 import java.util.ArrayList;
39 private final ArrayList<View> mTargets = new ArrayList<>();
49 private static ArrayList<View> constructArray(View target) {
50 final ArrayList<View> views = new ArrayList<>();
  /frameworks/base/services/core/java/com/android/server/audio/
RecordingActivityMonitor.java 29 import java.util.ArrayList;
41 private ArrayList<RecMonitorClient> mClients = new ArrayList<RecMonitorClient>();
110 return new ArrayList<AudioRecordingConfiguration>(mRecordConfigs.values());
128 final ArrayList<AudioRecordingConfiguration> configs;
175 configs = new ArrayList<AudioRecordingConfiguration>(mRecordConfigs.values());
  /frameworks/base/services/core/java/com/android/server/hdmi/
HdmiUtils.java 23 import java.util.ArrayList;
163 ArrayList<Integer> list = new ArrayList<>(is.length);
202 ArrayList<T> list = new ArrayList<>();
219 List<T> newList = new ArrayList<>();
  /frameworks/base/services/devicepolicy/java/com/android/server/devicepolicy/
NetworkLoggingHandler.java 33 import java.util.ArrayList;
86 private ArrayList<NetworkEvent> mNetworkEvents = new ArrayList<>();
93 private final LongSparseArray<ArrayList<NetworkEvent>> mBatches =
179 mNetworkEvents = new ArrayList<>();
195 mNetworkEvents = new ArrayList<>();
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
Main.java 22 import java.util.ArrayList;
65 ArrayList<String> osJarPath = new ArrayList<>();
85 private static int createLayoutLib(String osDestJar, ArrayList<String> osJarPath, Log log) {
169 private static int listDeps(ArrayList<String> osJarPath, Log log) {
193 ArrayList<String> osJarPath, String[] osDestJar) {
  /frameworks/native/opengl/tools/glgen/src/
JFunc.java 17 import java.util.ArrayList;
28 List<String> argNames = new ArrayList<String>();
29 List<JType> argTypes = new ArrayList<JType>();
30 List<Integer> argCIndices = new ArrayList<Integer>();
34 ArrayList<String> bufferArgNames = new ArrayList<String>();
  /libcore/luni/src/test/java/libcore/java/util/
ForEachRemainingTester.java 19 import java.util.ArrayList;
54 ArrayList<T> recorder = new ArrayList<>();
70 ArrayList<T> recorder = new ArrayList<>();
73 assertEquals(new ArrayList<T>(collection), recorder);
  /packages/apps/Car/libs/car-apps-common/src/com/android/car/apps/common/
RecycleBitmapPool.java 25 import java.util.ArrayList;
55 private final SparseArray<ArrayList<SoftReference<Bitmap>>> mRecycled8888 =
56 new SparseArray<ArrayList<SoftReference<Bitmap>>>();
97 ArrayList<SoftReference<Bitmap>> list = mRecycled8888.get(key);
99 list = new ArrayList<SoftReference<Bitmap>>();
140 private static Bitmap getRecycledBitmap(ArrayList<SoftReference<Bitmap>> list) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
ClusterAlbumSet.java 24 import java.util.ArrayList;
33 private ArrayList<ClusterAlbum> mAlbums = new ArrayList<ClusterAlbum>();
144 ArrayList<Path> oldPaths = mAlbums.get(i).getMediaItems();
145 ArrayList<Path> newPaths = new ArrayList<Path>();
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Profile.java 23 import java.util.ArrayList;
49 ArrayList<String[]> holdingStacks = new ArrayList<String[]>();
56 private ArrayList<WatchEntry> mList = new ArrayList<WatchEntry>();
169 ArrayList<String[]> stacks = entry.holdingStacks;

Completed in 749 milliseconds

<<31323334353637383940>>