Searched defs:values (Results 1 - 8 of 8) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/dex/code/
H A DArrayData.java38 /** {@code non-null;} initial values to be filled into an array */
39 private final ArrayList<Constant> values; field in class:ArrayData
57 * @param values {@code non-null;} initial values to be filled into an array
60 ArrayList<Constant> values,
68 if (values == null) {
69 throw new NullPointerException("values == null");
72 int sz = values.size();
75 throw new IllegalArgumentException("Illegal number of init values");
96 this.values
59 ArrayData(SourcePosition position, CodeAddress user, ArrayList<Constant> values, Constant arrayType) argument
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DArrayData.java40 /** {@code non-null;} initial values to be filled into an array */
41 private final ArrayList<Constant> values; field in class:ArrayData
59 * @param values {@code non-null;} initial values to be filled into an array
62 ArrayList<Constant> values,
70 if (values == null) {
71 throw new NullPointerException("values == null");
74 int sz = values.size();
77 throw new IllegalArgumentException("Illegal number of init values");
98 this.values
61 ArrayData(SourcePosition position, CodeAddress user, ArrayList<Constant> values, Constant arrayType) argument
[all...]
/dalvik/dx/tests/091-ssa-const-collector/
H A DBlort$Foo.class ... Foo EIGHT private static final synthetic Blort$Foo[] $VALUES public static Blort$Foo[] values () public static Blort$ ...
/dalvik/dx/src/com/android/dx/cf/code/
H A DSwitchList.java28 /** {@code non-null;} list of test values */
29 private final IntList values; field in class:SwitchList
32 * {@code non-null;} list of targets corresponding to the test values; there
48 this.values = new IntList(size);
56 values.setImmutable();
77 return values.get(n);
112 * Gets the list of all case values.
117 return values;
154 values.add(value);
180 values
[all...]
/dalvik/dexgen/src/com/android/dexgen/util/
H A DIntList.java29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[siz
[all...]
/dalvik/dx/src/com/android/dx/util/
H A DIntList.java29 private int[] values; field in class:IntList
34 /** whether the values are currently sorted */
87 values = new int[initialCapacity];
103 result = (result * 31) + values[i];
131 if (values[i] != otherList.values[i]) {
150 sb.append(values[i]);
177 return values[n];
198 values[n] = value;
219 values[siz
[all...]
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java252 // values contains one value from each dex, sorted for fast retrieval of
255 TreeMap<T, List<Integer>> values = new TreeMap<T, List<Integer>>();
260 // Fill in values with the first value of each dex.
262 dexSections[i], sections[i], indexMaps[i], indexes[i], values, i);
264 if (values.isEmpty()) {
272 while (!values.isEmpty()) {
273 Map.Entry<T, List<Integer>> first = values.pollFirstEntry();
278 indexMaps[dex], indexes[dex], values, dex);
288 int index, TreeMap<T, List<Integer>> values, int dex) {
292 List<Integer> l = values
287 readIntoMap(Dex.Section in, TableOfContents.Section section, IndexMap indexMap, int index, TreeMap<T, List<Integer>> values, int dex) argument
[all...]
/dalvik/dx/etc/
H A Djasmin.jar ... jas.CP exttype private java.util.Vector values private static final char type_int private static final char type_byte ...

Completed in 847 milliseconds