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/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/hit/src/com/android/hit/
H A DClassInstance.java48 byte[] values) {
49 ByteArrayInputStream bais = new ByteArrayInputStream(values);
47 resolve(State state, ClassObj isa, int[] types, byte[] values) argument
H A DClassObj.java151 public final void setStaticFieldValues(byte[] values) { argument
152 mStaticFieldValues = values;
/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/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 221 milliseconds