Searched defs:annotate (Results 1 - 13 of 13) sorted by relevance

/dalvik/dexgen/src/com/android/dexgen/util/
H A DAnnotatedOutput.java49 public void annotate(String msg); method in interface:AnnotatedOutput
62 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
66 * until the next call to {@link #annotate}.
H A DByteArrayAnnotatedOutput.java367 public void annotate(String msg) { method in class:ByteArrayAnnotatedOutput
377 public void annotate(int amt, String msg) { method in class:ByteArrayAnnotatedOutput
/dalvik/dx/src/com/android/dx/util/
H A DAnnotatedOutput.java49 public void annotate(String msg); method in interface:AnnotatedOutput
62 public void annotate(int amt, String msg); method in interface:AnnotatedOutput
66 * until the next call to {@link #annotate}.
H A DByteArrayAnnotatedOutput.java360 public void annotate(String msg) { method in class:ByteArrayAnnotatedOutput
370 public void annotate(int amt, String msg) { method in class:ByteArrayAnnotatedOutput
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalsArray.java56 * @param ex {@code non-null;} the exception to annotate
58 public abstract void annotate(ExceptionWithContext ex); method in class:LocalsArray
H A DExecutionStack.java79 * @param ex {@code non-null;} the exception to annotate
81 public void annotate(ExceptionWithContext ex) { method in class:ExecutionStack
311 this.annotate(ex);
313 other.annotate(ex);
H A DFrame.java409 * @param ex {@code non-null;} the exception to annotate
411 public void annotate(ExceptionWithContext ex) { method in class:Frame
412 locals.annotate(ex);
413 stack.annotate(ex);
H A DLocalsArraySet.java125 public void annotate(ExceptionWithContext ex) { method in class:LocalsArraySet
127 primary.annotate(ex);
137 la.getPrimary().annotate(ex);
357 annotate(ex);
359 other.annotate(ex);
H A DOneLocalsArray.java59 public void annotate(ExceptionWithContext ex) { method in class:OneLocalsArray
214 annotate(ex);
216 other.annotate(ex);
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DDebugInfoEncoder.java130 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(outpu
[all...]
H A DDexFile.java172 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, argument
540 if (annotate) {
575 if (annotate) {
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java130 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(outpu
[all...]
H A DDexFile.java193 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, argument
559 if (annotate) {
594 if (annotate) {
[all...]

Completed in 403 milliseconds