Lines Matching refs:Writer
357 private Writer writer;
361 writer = new Writer(data.length);
366 return writer.toByteArray();
370 writer.sameFrame(offsetDelta);
374 writer.sameLocals(offsetDelta, stackTag, copyData(stackTag, stackData));
378 writer.chopFrame(offsetDelta, k);
382 writer.appendFrame(offsetDelta, tags, copyData(tags, data));
387 writer.fullFrame(offsetDelta, localTags, copyData(localTags, localData),
524 * A writer of stack map tables.
526 public static class Writer {
531 * Constructs a writer.
534 public Writer(int size) {
694 private PrintWriter writer;
700 public static void print(StackMapTable smt, PrintWriter writer) {
702 new Printer(smt.get(), writer).parse();
705 writer.println(e.getMessage());
711 writer = pw;
717 writer.println(offset + " same frame: " + offsetDelta);
722 writer.println(offset + " same locals: " + offsetDelta);
728 writer.println(offset + " chop frame: " + offsetDelta + ", " + k + " last locals");
733 writer.println(offset + " append frame: " + offsetDelta);
741 writer.println(offset + " full frame: " + offsetDelta);
742 writer.println("[locals]");
746 writer.println("[stack]");
783 writer.print(" ");
784 writer.println(msg);