HomeSort by relevance Sort by last modified time
    Searched refs:annotate (Results 51 - 75 of 192) sorted by null

1 23 4 5 6 7 8

  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
StringDataItem.java 76 out.annotate(Leb128Utils.unsignedLeb128Size(utf16Size),
78 out.annotate(bytes.size() + 1, value.toQuoted());
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...]
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...]
DexFile.java 193 boolean annotate = (humanOut != null);
194 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
200 if (annotate) {
215 boolean annotate = (humanOut != null);
216 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
218 if (annotate) {
490 * @param annotate whether or not to keep annotations
494 private ByteArrayAnnotatedOutput toDex0(boolean annotate,
559 if (annotate) {
594 if (annotate) {
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationSetItem.java 55 out.annotate(4, "size = %d", size);
59 out.annotate(4, AnnotationItem.getReferenceAnnotation(dexFile, annotationOffset));
AnnotationSetRefList.java 55 out.annotate(4, "size = %d", size);
59 out.annotate(4, "annotation_set_item[0x%x]", annotationSetOffset);
  /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...]
DexFile.java 172 boolean annotate = (humanOut != null);
173 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
179 if (annotate) {
194 boolean annotate = (humanOut != null);
195 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
197 if (annotate) {
471 * @param annotate whether or not to keep annotations
475 private ByteArrayAnnotatedOutput toDex0(boolean annotate,
540 if (annotate) {
575 if (annotate) {
    [all...]
AnnotationSetItem.java 138 out.annotate(0, offsetString() + " annotation set");
139 out.annotate(4, " size: " + Hex.u4(size));
149 out.annotate(4, " entries[" + Integer.toHexString(i) + "]: " +
EncodedField.java 140 out.annotate(0, String.format(" [%x] %s", dumpSeq,
142 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
144 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
ParameterAnnotationStruct.java 114 out.annotate(0, " " + method.toHuman());
115 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
116 out.annotate(4, " annotations_off: " +
  /dalvik/dx/src/com/android/dx/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 220 out.annotate(0, offsetString() + ' ' + type.getTypeName() +
222 out.annotate(2, " type: " + Hex.u2(value) + " // " +
224 out.annotate(2, " unused: 0");
225 out.annotate(4, " size: " + Hex.u4(itemCount));
226 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 138 private void annotate(int length, String message) { method in class:DebugInfoEncoder
144 annotateTo.annotate(shouldConsume ? length : 0, message);
211 annotate(1, String.format("%04x: prologue end",address));
379 boolean annotate = (annotateTo != null) || (debugPrint != null);
389 if (annotate) {
390 annotate(output.getCursor() - mark, "line_start: " + line);
416 if (annotate) {
417 annotate(output.getCursor() - mark,
459 if (annotate) {
463 annotate(output.getCursor() - mark
    [all...]
DexFile.java 191 boolean annotate = (humanOut != null);
192 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
198 if (annotate) {
213 boolean annotate = (humanOut != null);
214 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
216 if (annotate) {
488 * @param annotate whether or not to keep annotations
492 private ByteArrayAnnotatedOutput toDex0(boolean annotate,
557 if (annotate) {
592 if (annotate) {
    [all...]
AnnotationSetItem.java 139 out.annotate(0, offsetString() + " annotation set");
140 out.annotate(4, " size: " + Hex.u4(size));
150 out.annotate(4, " entries[" + Integer.toHexString(i) + "]: " +
EncodedField.java 139 out.annotate(0, String.format(" [%x] %s", dumpSeq,
141 out.annotate(Leb128.unsignedLeb128Size(diff),
143 out.annotate(Leb128.unsignedLeb128Size(accessFlags),

Completed in 1345 milliseconds

1 23 4 5 6 7 8