HomeSort by relevance Sort by last modified time
    Searched refs:ArrayList (Results 176 - 200 of 7905) sorted by null

1 2 3 4 5 6 78 91011>>

  /packages/apps/Settings/tests/robotests/src/com/android/settings/
LicenseHtmlLoaderTest.java 32 import java.util.ArrayList;
47 LicenseHtmlLoader newLicenseHtmlLoader(ArrayList<File> xmlFiles,
65 ArrayList<File> xmlFiles = new ArrayList();
77 ArrayList<File> xmlFiles = new ArrayList();
88 ArrayList<File> xmlFiles = new ArrayList();
100 ArrayList<File> xmlFiles = new ArrayList();
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShadowCardStack.java 29 import java.util.ArrayList;
38 public AnimatorSet createSet(ArrayList<Animator> items, long startDelay) {
58 ArrayList<Animator> towardAnimators = new ArrayList<Animator>();
59 ArrayList<Animator> expandAnimators = new ArrayList<Animator>();
60 ArrayList<Animator> moveAwayAnimators = new ArrayList<Animator>();
61 ArrayList<Animator> moveBackAnimators = new ArrayList<Animator>()
    [all...]
  /external/doclava/src/com/google/doclava/
AnnotationInstanceInfo.java 21 import java.util.ArrayList;
28 private ArrayList<AnnotationValueInfo> mElementValues;
29 private ArrayList<Resolution> mResolutions;
33 mElementValues = new ArrayList<AnnotationValueInfo>();
38 mElementValues = new ArrayList<AnnotationValueInfo>(Arrays.asList(elementValues));
53 ArrayList<AnnotationValueInfo> elementValues() {
89 mResolutions = new ArrayList<Resolution>();
103 ArrayList<Resolution> resolutions = mResolutions;
104 mResolutions = new ArrayList<Resolution>();
152 public static ArrayList<AnnotationInstanceInfo> getAnnotationsIntersection
    [all...]
  /libcore/ojluni/src/main/java/sun/net/
ProgressMonitor.java 28 import java.util.ArrayList;
66 public ArrayList<ProgressSource> getProgressSources() {
67 ArrayList<ProgressSource> snapshot = new ArrayList<ProgressSource>();
117 ArrayList<ProgressListener> listeners = new ArrayList<ProgressListener>();
154 ArrayList<ProgressListener> listeners = new ArrayList<ProgressListener>();
186 ArrayList<ProgressListener> listeners = new ArrayList<ProgressListener>()
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
GLShape.java 20 import java.util.ArrayList;
98 protected ArrayList<GLFace> mFaceList = new ArrayList<GLFace>();
99 protected ArrayList<GLVertex> mVertexList = new ArrayList<GLVertex>();
100 protected ArrayList<Integer> mIndexList = new ArrayList<Integer>(); // make more efficient?
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
HistoryEvaluator.java 21 import java.util.ArrayList;
31 private final ArrayList<Data> mStrokes = new ArrayList<>();
32 private final ArrayList<Data> mGestureWeights = new ArrayList<>();
56 private float weightedAverage(ArrayList<Data> list) {
88 private void decayValue(ArrayList<Data> list, float factor) {
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 8 import java.util.ArrayList;
289 private ArrayList<String> names = new ArrayList<String>();
290 private ArrayList<String> types = new ArrayList<String>();
291 private ArrayList<String> values = new ArrayList<String>();
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
HistoryEvaluator.java 21 import java.util.ArrayList;
31 private final ArrayList<Data> mStrokes = new ArrayList<>();
32 private final ArrayList<Data> mGestureWeights = new ArrayList<>();
54 private float weightedAverage(ArrayList<Data> list) {
86 private void decayValue(ArrayList<Data> list, float factor) {
  /packages/apps/TV/src/com/android/tv/util/
ViewCache.java 9 import java.util.ArrayList;
15 private final static SparseArray<ArrayList<View>> mViews = new SparseArray();
42 ArrayList<View> views = mViews.get(resId);
44 views = new ArrayList();
56 ArrayList<View> views = mViews.get(resId);
58 views = new ArrayList<>();
71 ArrayList<View> views = mViews.get(resId);
  /frameworks/base/core/java/android/bluetooth/
BluetoothGattService.java 21 import java.util.ArrayList;
104 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
105 mIncludedServices = new ArrayList<BluetoothGattService>();
118 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
119 mIncludedServices = new ArrayList<BluetoothGattService>();
131 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>();
132 mIncludedServices = new ArrayList<BluetoothGattService>();
149 ArrayList<BluetoothGattIncludedService> includedServices =
150 new ArrayList<BluetoothGattIncludedService>(mIncludedServices.size());
174 mCharacteristics = new ArrayList<BluetoothGattCharacteristic>()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Utils/Path/
Path.java 26 import java.util.ArrayList;
32 protected ArrayList<Waypoint> mCurrentPath = new ArrayList<>();
33 protected ArrayList<Waypoint> mPathMarkers = new ArrayList<>();
102 public ArrayList<Waypoint> getCurrentPath() {
103 return new ArrayList<>(mCurrentPath);
109 public ArrayList<Waypoint> getPathMarkers() {
110 return new ArrayList<>(mPathMarkers);
  /external/conscrypt/openjdk/src/test/java/org/conscrypt/
TestSessionBuilder.java 23 import java.util.ArrayList;
33 private ArrayList<byte[]> certificates = new ArrayList<>();
35 private ArrayList<Integer> certificateLengths = new ArrayList<>();
38 private ArrayList<byte[]> ocspDatas = new ArrayList<>();
40 private ArrayList<Integer> ocspDataLengths = new ArrayList<>();
  /external/jdiff/src/jdiff/
ClassDiff.java 66 ctorsAdded = new ArrayList(); // ConstructorAPI[]
67 ctorsRemoved = new ArrayList(); // ConstructorAPI[]
68 ctorsChanged = new ArrayList(); // MemberDiff[]
70 methodsAdded = new ArrayList(); // MethodAPI[]
71 methodsRemoved = new ArrayList(); // MethodAPI[]
72 methodsChanged = new ArrayList(); // MemberDiff[]
74 fieldsAdded = new ArrayList(); // FieldAPI[]
75 fieldsRemoved = new ArrayList(); // FieldAPI[]
76 fieldsChanged = new ArrayList(); // MemberDiff[]
  /frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
Size.java 23 import java.util.ArrayList;
40 ArrayList<Size> list = new ArrayList<Size>(cameraSizes.size());
54 ArrayList<Size> list = new ArrayList<Size>(androidSizes.size());
68 ArrayList<Integer> flatSizes = new ArrayList<>();
84 ArrayList<Size> list = new ArrayList<>();
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultHomePreferenceController.java 29 import java.util.ArrayList;
61 final ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
74 final List<ResolveInfo> homeActivities = new ArrayList<>();
75 final List<ActivityInfo> appLabels = new ArrayList<>();
91 ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
103 final ArrayList<ResolveInfo> homeActivities = new ArrayList<>();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
StockSource.java 22 import java.util.ArrayList;
33 private final ArrayList<ImageData> mImageCache;
34 private final ArrayList<AlbumData> mAlbumCache;
36 private final ArrayList<ImageData> mImageList;
37 private final ArrayList<AlbumData> mAlbumList;
45 mImageCache = new ArrayList<ImageData>(PHOTOS.length);
46 mAlbumCache = new ArrayList<AlbumData>(1);
47 mImageList = new ArrayList<ImageData>(PHOTOS.length);
48 mAlbumList = new ArrayList<AlbumData>(1);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/accessory/
AccessoryAttachmentHandler.java 26 import java.util.ArrayList;
32 private static final ArrayList<AccessoryAttachmentObserver> sObservers = new ArrayList<>();
63 ArrayList<AccessoryAttachmentObserver> observers =
64 (ArrayList<AccessoryAttachmentObserver>) sObservers.clone();
  /cts/apps/CtsVerifierUSBCompanion/src/com/android/cts/verifierusbcompanion/
AccessoryAttachmentHandler.java 26 import java.util.ArrayList;
32 private static final ArrayList<AccessoryAttachmentObserver> sObservers = new ArrayList<>();
63 ArrayList<AccessoryAttachmentObserver> observers =
64 (ArrayList<AccessoryAttachmentObserver>) sObservers.clone();
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 25 import java.util.ArrayList;
41 private final LinkedHashMap<String, ArrayList<Property>> mPropsMap =
42 new LinkedHashMap<String, ArrayList<Property>>();
58 ArrayList<Property> props = mPropsMap.get(name);
60 props = new ArrayList<Property>();
  /cts/tests/tests/telephony/src/android/telephony/gsm/cts/
SmsManagerTest.java 19 import java.util.ArrayList;
33 protected ArrayList<String> divideMessage(String text) {
42 protected void sendMultiPartTextMessage(String destAddr, ArrayList<String> parts,
43 ArrayList<PendingIntent> sentIntents, ArrayList<PendingIntent> deliveryIntents) {
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/
AutofillFieldMetadataCollection.java 20 import java.util.ArrayList;
31 private final List<AutofillId> mAutofillIds = new ArrayList<>();
33 private final List<String> mAllAutofillHints = new ArrayList<>();
34 private final List<String> mFocusedAutofillHints = new ArrayList<>();
49 mAutofillHintsToFieldsMap.put(hint, new ArrayList<>());
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/
AutofillFieldMetadataCollection.java 20 import java.util.ArrayList;
31 private final List<AutofillId> mAutofillIds = new ArrayList<>();
33 private final List<String> mAllAutofillHints = new ArrayList<>();
34 private final List<String> mFocusedAutofillHints = new ArrayList<>();
49 mAutofillHintsToFieldsMap.put(hint, new ArrayList<>());
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleBroadcastReceiver.java 25 import java.util.ArrayList;
44 ArrayList<Integer> appWidgetIds = new ArrayList<Integer>();
45 ArrayList<String> texts = new ArrayList<String>();
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
OnePointCrossover.java 19 import java.util.ArrayList;
94 ArrayList<T> child1Rep = new ArrayList<T> (first.getLength());
95 ArrayList<T> child2Rep = new ArrayList<T> (second.getLength());
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ObjectReference/
ReferringObjectsDebuggee.java 22 import java.util.ArrayList;
45 ArrayList<ReferringObjectsReferrer001> referringObjs = new ArrayList<ReferringObjectsReferrer001>();
52 ArrayList<ReferringObjectsReferrer001> nonreferringObjs = new ArrayList<ReferringObjectsReferrer001>();

Completed in 1055 milliseconds

1 2 3 4 5 6 78 91011>>