/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/ |
D | ClassDefinition.java | 40 import org.jf.util.IndentingWriter; 103 public void writeTo(IndentingWriter writer) throws IOException { in writeTo() 115 private void writeClass(IndentingWriter writer) throws IOException { in writeClass() 122 private void writeAccessFlags(IndentingWriter writer) throws IOException { in writeAccessFlags() 129 private void writeSuper(IndentingWriter writer) throws IOException { in writeSuper() 138 private void writeSourceFile(IndentingWriter writer) throws IOException { in writeSourceFile() 147 private void writeInterfaces(IndentingWriter writer) throws IOException { in writeInterfaces() 161 private void writeAnnotations(IndentingWriter writer) throws IOException { in writeAnnotations() 176 private Set<String> writeStaticFields(IndentingWriter writer) throws IOException { in writeStaticFields() 196 IndentingWriter fieldWriter = writer; in writeStaticFields() [all …]
|
D | ReferenceFormatter.java | 34 import org.jf.util.IndentingWriter; 40 … public static void writeStringReference(IndentingWriter writer, String item) throws IOException { in writeStringReference() 46 public static void writeReference(IndentingWriter writer, int referenceType, in writeReference()
|
D | AnnotationFormatter.java | 34 import org.jf.util.IndentingWriter; 43 public static void writeTo(@Nonnull IndentingWriter writer, in writeTo() 57 public static void writeTo(@Nonnull IndentingWriter writer, @Nonnull Annotation annotation, in writeTo()
|
D | RegisterFormatter.java | 32 import org.jf.util.IndentingWriter; 60 …public void writeRegisterRange(IndentingWriter writer, int startRegister, int lastRegister) throws… in writeRegisterRange() 88 public void writeTo(IndentingWriter writer, int register) throws IOException { in writeTo()
|
D | PostInstructionRegisterInfoMethodItem.java | 34 import org.jf.util.IndentingWriter; 58 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo() 85 private boolean writeRegisterInfo(IndentingWriter writer, BitSet registers) throws IOException { in writeRegisterInfo()
|
D | BlankMethodItem.java | 31 import org.jf.util.IndentingWriter; 43 public boolean writeTo(IndentingWriter writer) { in writeTo()
|
D | FieldDefinition.java | 38 import org.jf.util.IndentingWriter; 44 public static void writeTo(BaksmaliOptions options, IndentingWriter writer, Field field, in writeTo() 95 … private static void writeAccessFlags(IndentingWriter writer, int accessFlags) throws IOException { in writeAccessFlags()
|
D | CommentingIndentingWriter.java | 34 import org.jf.util.IndentingWriter; 39 public class CommentingIndentingWriter extends IndentingWriter {
|
D | CommentedOutMethodItem.java | 31 import org.jf.util.IndentingWriter; 47 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/ |
D | InstructionMethodItem.java | 47 import org.jf.util.IndentingWriter; 82 private String writeInvalidItemIndex(InvalidItemIndex ex, int type, IndentingWriter writer) in writeInvalidItemIndex() 91 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo() 405 protected void writeOpcode(IndentingWriter writer) throws IOException { in writeOpcode() 409 protected void writeTargetLabel(IndentingWriter writer) throws IOException { in writeTargetLabel() 415 protected void writeRegister(IndentingWriter writer, int registerNumber) throws IOException { in writeRegister() 419 protected void writeFirstRegister(IndentingWriter writer) throws IOException { in writeFirstRegister() 423 protected void writeSecondRegister(IndentingWriter writer) throws IOException { in writeSecondRegister() 427 protected void writeThirdRegister(IndentingWriter writer) throws IOException { in writeThirdRegister() 431 protected void writeInvokeRegisters(IndentingWriter writer) throws IOException { in writeInvokeRegisters() [all …]
|
D | SparseSwitchMethodItem.java | 36 import org.jf.util.IndentingWriter; 72 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo() 97 public abstract void writeTargetTo(IndentingWriter writer) throws IOException; in writeTargetTo() 107 public void writeTargetTo(IndentingWriter writer) throws IOException { in writeTargetTo() 119 public void writeTargetTo(IndentingWriter writer) throws IOException { in writeTargetTo()
|
D | PackedSwitchMethodItem.java | 36 import org.jf.util.IndentingWriter; 84 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo() 105 public abstract void writeTargetTo(IndentingWriter writer) throws IOException; in writeTargetTo() 113 public void writeTargetTo(IndentingWriter writer) throws IOException { in writeTargetTo() 123 public void writeTargetTo(IndentingWriter writer) throws IOException { in writeTargetTo()
|
D | UnresolvedOdexInstructionMethodItem.java | 33 import org.jf.util.IndentingWriter; 44 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo() 49 private void writeThrowTo(IndentingWriter writer) throws IOException { in writeThrowTo()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/ |
D | IntegerRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, int val) throws IOException { in writeTo() 46 public static void writeUnsignedTo(IndentingWriter writer, int val) throws IOException { in writeUnsignedTo()
|
D | ByteRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, byte val) throws IOException { in writeTo() 48 public static void writeUnsignedTo(IndentingWriter writer, byte val) throws IOException { in writeUnsignedTo()
|
D | LongRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, long val) throws IOException { in writeTo() 48 public static void writeSignedIntOrLongTo(IndentingWriter writer, long val) throws IOException { in writeSignedIntOrLongTo()
|
D | BooleanRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, boolean val) throws IOException { in writeTo()
|
D | DoubleRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, double val) throws IOException { in writeTo()
|
D | FloatRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, float val) throws IOException { in writeTo()
|
D | CharRenderer.java | 31 import org.jf.util.IndentingWriter; 37 public static void writeTo(IndentingWriter writer, char val) throws IOException { in writeTo()
|
D | ShortRenderer.java | 31 import org.jf.util.IndentingWriter; 36 public static void writeTo(IndentingWriter writer, short val) throws IOException { in writeTo()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/EncodedValue/ |
D | AnnotationEncodedValueAdaptor.java | 33 import org.jf.util.IndentingWriter; 42 public static void writeTo(@Nonnull IndentingWriter writer, in writeTo() 53 public static void writeElementsTo(@Nonnull IndentingWriter writer, in writeElementsTo()
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Debug/ |
D | EndPrologueMethodItem.java | 34 import org.jf.util.IndentingWriter; 44 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo()
|
D | BeginEpilogueMethodItem.java | 34 import org.jf.util.IndentingWriter; 44 public boolean writeTo(IndentingWriter writer) throws IOException { in writeTo()
|
/external/smali/util/src/test/java/org/jf/util/ |
D | IndentingWriterTest.java | 44 IndentingWriter writer = new IndentingWriter(stringWriter); in testPrintSignedLongAsDec()
|