HomeSort by relevance Sort by last modified time
    Searched refs:ArrayList (Results 101 - 125 of 6349) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/glide/third_party/gif_decoder/src/main/java/com/bumptech/glide/gifdecoder/
GifHeader.java 3 import java.util.ArrayList;
18 List<GifFrame> frames = new ArrayList<GifFrame>();
  /external/slf4j/jul-to-slf4j/src/test/java/org/slf4j/bridge/
ListAppender.java 27 import java.util.ArrayList;
35 public List<LoggingEvent> list = new ArrayList<LoggingEvent>();
  /external/slf4j/log4j-over-slf4j/src/test/java/org/dummy/
ListHandler.java 27 import java.util.ArrayList;
34 List<LogRecord> list = new ArrayList<LogRecord>();
  /external/slf4j/slf4j-ext/src/test/java/org/slf4j/dummyExt/
ListAppender.java 27 import java.util.ArrayList;
35 public List<LoggingEvent> list = new ArrayList<LoggingEvent>();
  /external/slf4j/slf4j-log4j12/src/test/java/org/slf4j/
ListAppender.java 27 import java.util.ArrayList;
35 public List<LoggingEvent> list = new ArrayList<LoggingEvent>();
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/nodes/
SequenceNodeTest.java 18 import java.util.ArrayList;
25 SequenceNode node = new SequenceNode(new Tag("!foo"), true, new ArrayList<Node>(), null,
  /external/testng/src/test/java/test/dependent/
SD2.java 5 import java.util.ArrayList;
9 public static List<String> m_log = new ArrayList<>();
  /external/testng/src/test/java/test/pholser/
Captor.java 3 import java.util.ArrayList;
24 instance().captives = new ArrayList<>();
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
Stack.java 19 import java.util.ArrayList;
22 * Custom Stack implementation on top of an {@link ArrayList} instead of
27 public class Stack<T> extends ArrayList<T> {
  /packages/apps/Gallery2/src/com/android/photos/shims/
LoaderCompatShim.java 22 import java.util.ArrayList;
28 ArrayList<Uri> urisForSubItems(T item);
  /external/apache-xml/src/main/java/org/apache/xml/utils/
ObjectPool.java 23 import java.util.ArrayList;
43 private final ArrayList freeStack;
53 freeStack = new ArrayList();
72 freeStack = new ArrayList();
86 freeStack = new ArrayList(size);
96 freeStack = new ArrayList();
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/util/
StateMachine.java 16 import java.util.ArrayList;
49 private ArrayList<State> mPriorStates;
82 mPriorStates = new ArrayList<State>();
115 private final ArrayList<State> mSortedList = new ArrayList<State>();
178 ArrayList<State> L = new ArrayList<State>();
180 ArrayList<State> S = new ArrayList<State>();
181 HashMap<State, ArrayList<State>> edges = new HashMap<State, ArrayList<State>>()
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
ListEqualsTester.java 26 import java.util.ArrayList;
40 getList().equals(new ArrayList<E>(getOrderedElements())));
45 ArrayList<E> other = new ArrayList<E>(getSampleElements());
54 List<E> other = new ArrayList<E>(getSampleElements());
64 ArrayList<E> elements = new ArrayList<E>(getSampleElements());
67 List<E> other = new ArrayList<E>(getSampleElements());
77 getList().equals(new ArrayList<E>(fewerElements)));
83 getList().equals(new ArrayList<E>(moreElements)))
    [all...]
  /frameworks/base/services/core/java/com/android/server/backup/
BackupUtils.java 26 import java.util.ArrayList;
35 public static boolean signaturesMatch(ArrayList<byte[]> storedSigHashes, PackageInfo target) {
70 ArrayList<byte[]> deviceHashes = new ArrayList<byte[]>(nDevice);
109 public static ArrayList<byte[]> hashSignatureArray(Signature[] sigs) {
114 ArrayList<byte[]> hashes = new ArrayList<>(sigs.length);
121 public static ArrayList<byte[]> hashSignatureArray(List<byte[]> sigs) {
126 ArrayList<byte[]> hashes = new ArrayList<>(sigs.size())
    [all...]
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ThermalCoolingDevice.java 22 import java.util.ArrayList;
49 private ArrayList<Integer> mZoneIdList = new ArrayList<Integer>();
52 private ArrayList<Integer> mZoneStateList = new ArrayList<Integer>();
55 private ArrayList<Integer> mThrottleValues = null;
132 public ArrayList<Integer> getZoneIdList() {
136 public ArrayList<Integer> getZoneStateList() {
140 public ArrayList<Integer> getThrottleValuesList() {
144 public void setThrottleValuesList(ArrayList<Integer> list)
    [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...]
  /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>();
  /external/doclava/src/com/google/doclava/
AnnotationInstanceInfo.java 21 import java.util.ArrayList;
27 private ArrayList<AnnotationValueInfo> mElementValues;
28 private ArrayList<Resolution> mResolutions;
32 mElementValues = new ArrayList<AnnotationValueInfo>();
37 mElementValues = new ArrayList<AnnotationValueInfo>(Arrays.asList(elementValues));
52 ArrayList<AnnotationValueInfo> elementValues() {
88 mResolutions = new ArrayList<Resolution>();
102 ArrayList<Resolution> resolutions = mResolutions;
103 mResolutions = new ArrayList<Resolution>();
152 public static ArrayList<AnnotationInstanceInfo> getShowAnnotationsIntersection
    [all...]
  /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...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/notification/
RankingHelperTest.java 27 import java.util.ArrayList;
96 ArrayList<NotificationRecord> notificationList = new ArrayList<NotificationRecord>(3);
110 ArrayList<NotificationRecord> notificationList = new ArrayList<NotificationRecord>(2);
118 ArrayList<NotificationRecord> notificationList = new ArrayList<NotificationRecord>(2);
126 ArrayList<NotificationRecord> notificationList = new ArrayList<NotificationRecord>(1);
133 ArrayList<NotificationRecord> notificationList = new ArrayList<NotificationRecord>(1)
    [all...]
  /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<>();

Completed in 805 milliseconds

1 2 3 45 6 7 8 91011>>