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

1 23 4 5 6 7

  /dalvik/dexgen/src/com/android/dexgen/dex/file/
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: " +
AnnotationSetRefItem.java 75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
EncodedMethod.java 179 out.annotate(0, String.format(" [%x] %s", dumpSeq,
181 out.annotate(Leb128Utils.unsignedLeb128Size(diff),
183 out.annotate(Leb128Utils.unsignedLeb128Size(accessFlags),
186 out.annotate(Leb128Utils.unsignedLeb128Size(codeOff),
ProtoIdItem.java 150 out.annotate(0, indexString() + ' ' + sb.toString());
151 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
153 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
155 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
  /dalvik/dx/src/com/android/dx/dex/file/
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),
ParameterAnnotationStruct.java 115 out.annotate(0, " " + method.toHuman());
116 out.annotate(4, " method_idx: " + Hex.u4(methodIdx));
117 out.annotate(4, " annotations_off: " +
AnnotationSetRefItem.java 75 out.annotate(4, " annotations_off: " + Hex.u4(annotationsOff));
EncodedMethod.java 178 out.annotate(0, String.format(" [%x] %s", dumpSeq,
180 out.annotate(Leb128.unsignedLeb128Size(diff),
182 out.annotate(Leb128.unsignedLeb128Size(accessFlags),
185 out.annotate(Leb128.unsignedLeb128Size(codeOff),
ProtoIdItem.java 147 out.annotate(0, indexString() + ' ' + sb.toString());
148 out.annotate(4, " shorty_idx: " + Hex.u4(shortyIdx) +
150 out.annotate(4, " return_type_idx: " + Hex.u4(returnIdx) +
152 out.annotate(4, " parameters_off: " + Hex.u4(paramsOff));
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
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...]
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: " +
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
__init__.py 57 annotate = _singleton_method('annotate') variable

Completed in 976 milliseconds

1 23 4 5 6 7