Home
last modified time | relevance | path

Searched refs:encode (Results 1 – 20 of 20) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
DInstructionCodec.java42 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_00X() method
59 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_10X() method
78 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_12X() method
99 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11N() method
119 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_11X() method
137 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_10T() method
157 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_20T() method
177 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_20BC() method
198 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_22X() method
220 public void encode(DecodedInstruction insn, CodeOutput out) { in FORMAT_21T() method
[all …]
DDecodedInstruction.java469 public final void encode(CodeOutput out) { in encode() method in DecodedInstruction
470 format.encode(this, out); in encode()
/dalvik/dx/src/com/android/dx/dex/file/
DDebugInfoItem.java73 encoded = encode(addedTo.getFile(), null, null, null, false); in place0()
98 encode(file, prefix, null, out, false); in annotateTo()
108 encode(null, prefix, out, null, false); in debugPrint()
121 encode(file, null, null, out, true); in writeTo0()
139 private byte[] encode(DexFile file, String prefix, PrintWriter debugPrint, in encode() method in DebugInfoItem
DEncodedMember.java83 public abstract int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedMember
DEncodedField.java136 public int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedField
DEncodedMethod.java161 public int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedMethod
DCatchStructs.java116 public void encode(DexFile file) { in encode() method in CatchStructs
DCodeItem.java204 catches.encode(file); in place0()
DClassDataItem.java405 lastIndex = list.get(i).encode(file, out, lastIndex, i); in encodeList()
/dalvik/dexgen/src/com/android/dexgen/dex/file/
DDebugInfoItem.java76 encoded = encode(addedTo.getFile(), null, null, null, false); in place0()
101 encode(file, prefix, null, out, false); in annotateTo()
111 encode(null, prefix, out, null, false); in debugPrint()
124 encode(file, null, null, out, true); in writeTo0()
142 private byte[] encode(DexFile file, String prefix, PrintWriter debugPrint, in encode() method in DebugInfoItem
DEncodedMember.java84 public abstract int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedMember
DEncodedField.java133 public int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedField
DEncodedMethod.java159 public int encode(DexFile file, AnnotatedOutput out, in encode() method in EncodedMethod
DCatchStructs.java119 public void encode(DexFile file) { in encode() method in CatchStructs
DCodeItem.java211 catches.encode(file); in place0()
DClassDataItem.java409 lastIndex = list.get(i).encode(file, out, lastIndex, i); in encodeList()
/dalvik/dx/src/com/android/dex/
DMutf8.java89 public static void encode(byte[] dst, int offset, String s) { in encode() method in Mutf8
109 public static byte[] encode(String s) throws UTFDataFormatException { in encode() method in Mutf8
112 encode(result, 0, s); in encode()
DDex.java689 write(Mutf8.encode(value)); in writeStringData()
/dalvik/dx/tests/117-modified-utf8/com/android/dx/util/
DMutf8Test.java38 Arrays.toString(Mutf8.encode("BC\u0000"))); in testEncode()
/dalvik/dx/src/com/android/dx/merge/
DInstructionTransformer.java57 instruction.encode(out); in transform()