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.java363 public void annotate(String msg) { method in class:ByteArrayAnnotatedOutput
373 public void annotate(int amt, String msg) { method in class:ByteArrayAnnotatedOutput
/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalsArray.java55 * @param ex {@code non-null;} the exception to annotate
57 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.java123 public void annotate(ExceptionWithContext ex) { method in class:LocalsArraySet
125 primary.annotate(ex);
135 la.getPrimary().annotate(ex);
355 annotate(ex);
357 other.annotate(ex);
H A DOneLocalsArray.java58 public void annotate(ExceptionWithContext ex) { method in class:OneLocalsArray
213 annotate(ex);
215 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.java138 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(outpu
[all...]
H A DDexFile.java221 boolean annotate = (humanOut != null);
222 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
228 if (annotate) {
243 boolean annotate = (humanOut != null);
244 ByteArrayAnnotatedOutput result = toDex0(annotate, verbose);
246 if (annotate) {
556 * @param annotate whether or not to keep annotations
560 private ByteArrayAnnotatedOutput toDex0(boolean annotate, argument
642 if (annotate) {
680 if (annotate) {
[all...]

Completed in 269 milliseconds