Searched defs:annotateTo (Results 1 - 4 of 4) sorted by relevance

/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DCatchStructs.java223 * Only one of {@code printTo} or {@code annotateTo} should
228 * @param annotateTo {@code null-ok;} where to consume bytes and annotate to
231 AnnotatedOutput annotateTo) {
234 boolean consume = (annotateTo != null);
241 annotateTo.annotate(0, prefix + "tries:");
254 annotateTo.annotate(amt1, s1);
255 annotateTo.annotate(amt2, s2);
267 annotateTo.annotate(0, prefix + "handlers:");
268 annotateTo.annotate(encodedHandlerHeaderSize,
281 offset - lastOffset, subPrefix, printTo, annotateTo);
230 annotateEntries(String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
304 annotateAndConsumeHandlers(CatchHandlerList handlers, int offset, int size, String prefix, PrintWriter printTo, AnnotatedOutput annotateTo) argument
[all...]
H A DDebugInfoItem.java98 public void annotateTo(DexFile file, AnnotatedOutput out, String prefix) { method in class:DebugInfoItem
H A DAnnotationItem.java171 public void annotateTo(AnnotatedOutput out, String prefix) { method in class:AnnotationItem
H A DDebugInfoEncoder.java82 private AnnotatedOutput annotateTo; field in class:DebugInfoEncoder
135 if (annotateTo != null) {
136 annotateTo.annotate(shouldConsume ? length : 0, message);
185 annotateTo = out;
202 if (annotateTo != null || debugPrint != null) {
371 boolean annotate = (annotateTo != null) || (debugPrint != null);
619 if (annotateTo != null || debugPrint != null) {
698 if (annotateTo != null || debugPrint != null) {
728 if (annotateTo != null || debugPrint != null) {
753 if (annotateTo !
[all...]

Completed in 123 milliseconds