| /external/dexmaker/src/dx/java/com/android/dx/dex/file/ |
| StringIdItem.java | 101 out.annotate(0, indexString() + ' ' + value.toQuoted(100)); 102 out.annotate(4, " string_data_off: " + Hex.u4(dataOff));
|
| TypeIdItem.java | 64 out.annotate(0, indexString() + ' ' + descriptor.toHuman()); 65 out.annotate(4, " descriptor_idx: " + Hex.u4(idx));
|
| AnnotationItem.java | 172 out.annotate(0, prefix + "visibility: " + 174 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 180 out.annotate(0, prefix + name.toHuman() + ": " + 192 out.annotate(0, offsetString() + " annotation"); 193 out.annotate(1, " visibility: VISBILITY_" + visibility);
|
| MapItem.java | 221 out.annotate(0, offsetString() + ' ' + type.getTypeName() + 223 out.annotate(2, " type: " + Hex.u2(value) + " // " + 225 out.annotate(2, " unused: 0"); 226 out.annotate(4, " size: " + Hex.u4(itemCount)); 227 out.annotate(4, " offset: " + Hex.u4(offset));
|
| ClassDefItem.java | 187 out.annotate(0, indexString() + ' ' + thisClass.toHuman()); 188 out.annotate(4, " class_idx: " + Hex.u4(classIdx)); 189 out.annotate(4, " access_flags: " + 191 out.annotate(4, " superclass_idx: " + Hex.u4(superIdx) + 194 out.annotate(4, " interfaces_off: " + Hex.u4(interOff)); 199 out.annotate(0, " " + list.getType(i).toHuman()); 202 out.annotate(4, " source_file_idx: " + Hex.u4(sourceFileIdx) + 205 out.annotate(4, " annotations_off: " + Hex.u4(annoOff)); 206 out.annotate(4, " class_data_off: " + Hex.u4(dataOff)); 207 out.annotate(4, " static_values_off: " [all...] |
| /external/smali/dexlib/src/main/java/org/jf/dexlib/EncodedValue/ |
| CharEncodedValue.java | 62 out.annotate(1, "value_type=" + ValueType.VALUE_CHAR.name() + ",value_arg=" + (bytes.length - 1)); 65 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " '" + c[0] + "'");
|
| DoubleEncodedValue.java | 63 out.annotate(1, "value_type=" + ValueType.VALUE_DOUBLE.name() + ",value_arg=" + (bytes.length - 1)); 64 out.annotate(bytes.length, "value: " + value);
|
| EnumEncodedValue.java | 66 out.annotate(1, "value_type=" + ValueType.VALUE_ENUM.name() + ",value_arg=" + (bytes.length - 1)); 67 out.annotate(bytes.length, "value: " + value.getFieldString());
|
| FieldEncodedValue.java | 66 out.annotate(1, "value_type=" + ValueType.VALUE_FIELD.name() + ",value_arg=" + (bytes.length - 1)); 67 out.annotate(bytes.length, "value: " + value.getFieldString());
|
| FloatEncodedValue.java | 63 out.annotate(1, "value_type=" + ValueType.VALUE_FLOAT.name() + ",value_arg=" + (bytes.length - 1)); 64 out.annotate(bytes.length, "value: " + value);
|
| IntEncodedValue.java | 62 out.annotate(1, "value_type=" + ValueType.VALUE_INT.name() + ",value_arg=" + (bytes.length - 1)); 63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
|
| LongEncodedValue.java | 62 out.annotate(1, "value_type=" + ValueType.VALUE_LONG.name() + ",value_arg=" + (bytes.length - 1)); 63 out.annotate(bytes.length, "value: 0x" + Long.toHexString(value) + " (" + value + ")");
|
| MethodEncodedValue.java | 66 out.annotate(1, "value_type=" + ValueType.VALUE_METHOD.name() + ",value_arg=" + (bytes.length - 1)); 67 out.annotate(bytes.length, "value: " + value.getMethodString());
|
| ShortEncodedValue.java | 62 out.annotate(1, "value_type=" + ValueType.VALUE_SHORT.name() + ",value_arg=" + (bytes.length - 1)); 63 out.annotate(bytes.length, "value: 0x" + Integer.toHexString(value) + " (" + value + ")");
|
| StringEncodedValue.java | 67 out.annotate(1, "value_type=" + ValueType.VALUE_STRING.name() + ",value_arg=" + (bytes.length - 1)); 68 out.annotate(bytes.length, "value: \"" + Utf8Utils.escapeString(value.getStringValue()) + "\"");
|
| TypeEncodedValue.java | 66 out.annotate(1, "value_type=" + ValueType.VALUE_TYPE.name() + ",value_arg=" + (bytes.length - 1)); 67 out.annotate(bytes.length, "value: " + value.getTypeDescriptor());
|
| AnnotationEncodedSubValue.java | 84 out.annotate("annotation_type: " + annotationType.getTypeDescriptor()); 86 out.annotate("element_count: 0x" + Integer.toHexString(names.length) + " (" + names.length + ")"); 90 out.annotate(0, "[" + i + "] annotation_element"); 92 out.annotate("element_name: " + names[i].getStringValue()); 94 out.annotate(0, "element_value:");
|
| /dalvik/dexgen/src/com/android/dexgen/dex/file/ |
| AnnotationItem.java | 174 out.annotate(0, prefix + "visibility: " + 176 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 182 out.annotate(0, prefix + name.toHuman() + ": " + 194 out.annotate(0, offsetString() + " annotation"); 195 out.annotate(1, " visibility: VISBILITY_" + visibility);
|
| MapItem.java | 221 out.annotate(0, offsetString() + ' ' + type.getTypeName() + 223 out.annotate(2, " type: " + Hex.u2(value) + " // " + 225 out.annotate(2, " unused: 0"); 226 out.annotate(4, " size: " + Hex.u4(itemCount)); 227 out.annotate(4, " offset: " + Hex.u4(offset));
|
| ClassDefItem.java | 189 out.annotate(0, indexString() + ' ' + thisClass.toHuman()); 190 out.annotate(4, " class_idx: " + Hex.u4(classIdx)); 191 out.annotate(4, " access_flags: " + 193 out.annotate(4, " superclass_idx: " + Hex.u4(superIdx) + 196 out.annotate(4, " interfaces_off: " + Hex.u4(interOff)); 201 out.annotate(0, " " + list.getType(i).toHuman()); 204 out.annotate(4, " source_file_idx: " + Hex.u4(sourceFileIdx) + 207 out.annotate(4, " annotations_off: " + Hex.u4(annoOff)); 208 out.annotate(4, " class_data_off: " + Hex.u4(dataOff)); 209 out.annotate(4, " static_values_off: " [all...] |
| DebugInfoEncoder.java | 130 private void annotate(int length, String message) { method in class:DebugInfoEncoder 136 annotateTo.annotate(shouldConsume ? length : 0, message); 203 annotate(1, String.format("%04x: prologue end",address)); 371 boolean annotate = (annotateTo != null) || (debugPrint != null); 381 if (annotate) { 382 annotate(output.getCursor() - mark, "line_start: " + line); 408 if (annotate) { 409 annotate(output.getCursor() - mark, 451 if (annotate) { 455 annotate(output.getCursor() - mark [all...] |
| /dalvik/dx/src/com/android/dx/dex/file/ |
| AnnotationItem.java | 172 out.annotate(0, prefix + "visibility: " + 174 out.annotate(0, prefix + "type: " + annotation.getType().toHuman()); 180 out.annotate(0, prefix + name.toHuman() + ": " + 192 out.annotate(0, offsetString() + " annotation"); 193 out.annotate(1, " visibility: VISBILITY_" + visibility);
|
| MapItem.java | 221 out.annotate(0, offsetString() + ' ' + type.getTypeName() + 223 out.annotate(2, " type: " + Hex.u2(value) + " // " + 225 out.annotate(2, " unused: 0"); 226 out.annotate(4, " size: " + Hex.u4(itemCount)); 227 out.annotate(4, " offset: " + Hex.u4(offset));
|
| ClassDefItem.java | 187 out.annotate(0, indexString() + ' ' + thisClass.toHuman()); 188 out.annotate(4, " class_idx: " + Hex.u4(classIdx)); 189 out.annotate(4, " access_flags: " + 191 out.annotate(4, " superclass_idx: " + Hex.u4(superIdx) + 194 out.annotate(4, " interfaces_off: " + Hex.u4(interOff)); 199 out.annotate(0, " " + list.getType(i).toHuman()); 202 out.annotate(4, " source_file_idx: " + Hex.u4(sourceFileIdx) + 205 out.annotate(4, " annotations_off: " + Hex.u4(annoOff)); 206 out.annotate(4, " class_data_off: " + Hex.u4(dataOff)); 207 out.annotate(4, " static_values_off: " [all...] |
| DebugInfoEncoder.java | 130 private void annotate(int length, String message) { method in class:DebugInfoEncoder 136 annotateTo.annotate(shouldConsume ? length : 0, message); 203 annotate(1, String.format("%04x: prologue end",address)); 371 boolean annotate = (annotateTo != null) || (debugPrint != null); 381 if (annotate) { 382 annotate(output.getCursor() - mark, "line_start: " + line); 408 if (annotate) { 409 annotate(output.getCursor() - mark, 451 if (annotate) { 455 annotate(output.getCursor() - mark [all...] |