Searched defs:values (Results 1 - 13 of 13) 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.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/io/
H A DAnnotation.java29 private final EncodedValue[] values; field in class:Annotation
32 EncodedValue[] values) {
37 this.values = values;
53 return values;
62 values[i].writeTo(out);
75 int compare = values[i].compareTo(other.values[i]);
99 result.append(values[i]);
31 Annotation(DexBuffer buffer, byte visibility, int typeIndex, int[] names, EncodedValue[] values) argument
/dalvik/vm/arch/generic/
H A DCall.cpp81 void* values[kMaxArgs]; local
87 values[0] = &pEnv;
91 values[1] = &clazz;
94 values[1] = (void*) argv++;
101 * "types" array. Store the start address of the argument in "values".
106 values[dstArg++] = (void*) argv++;
119 ffi_call(&cif, FFI_FN(func), pReturn, values);
/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/vm/hprof/
H A DHprofOutput.cpp207 int hprofAddU1ListToRecord(hprof_record_t *rec, const u1 *values, argument
217 memcpy(rec->body + rec->length, values, numValues);
245 int hprofAddU2ListToRecord(hprof_record_t *rec, const u2 *values, argument
257 U2_TO_BUF_BE(insert, 0, *values++);
258 insert += sizeof(*values);
270 int hprofAddU4ListToRecord(hprof_record_t *rec, const u4 *values, argument
282 U4_TO_BUF_BE(insert, 0, *values++);
283 insert += sizeof(*values);
295 int hprofAddU8ListToRecord(hprof_record_t *rec, const u8 *values, argument
307 U8_TO_BUF_BE(insert, 0, *values
[all...]
/dalvik/vm/analysis/
H A DDexPrepare.cpp385 char values[argc][kMaxIntLen]; local
421 sprintf(values[2], "%d", DALVIK_VM_BUILD);
422 argv[curArg++] = values[2];
424 sprintf(values[3], "%d", fd);
425 argv[curArg++] = values[3];
427 sprintf(values[4], "%d", (int) dexOffset);
428 argv[curArg++] = values[4];
430 sprintf(values[5], "%d", (int) dexLength);
431 argv[curArg++] = values[5];
435 sprintf(values[
[all...]
/dalvik/vm/jdwp/
H A DJdwpHandler.cpp540 * Get values from static fields in a reference type.
722 * Set static class values.
728 u4 values = read4BE(&buf); local
730 ALOGV(" Req to set %d values in classId=%llx", values, classId);
732 for (u4 i = 0; i < values; i++) {
749 * values in the "variables" display.
871 * Get values from the fields of an object.
892 * Set values in the fields of an object.
1296 * Return the values fro
1326 u4 values = read4BE(&buf); local
[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 1934 milliseconds