Home | History | Annotate | Download | only in io

Lines Matching refs:Dex

19 import com.android.dex.ClassDef;
20 import com.android.dex.Dex;
21 import com.android.dex.FieldId;
22 import com.android.dex.MethodId;
23 import com.android.dex.ProtoId;
24 import com.android.dex.TableOfContents;
29 * Executable that prints all indices of a dex file.
32 private final Dex dex;
36 this.dex = new Dex(file);
37 this.tableOfContents = dex.getTableOfContents();
53 for (String string : dex.strings()) {
61 for (Integer type : dex.typeIds()) {
62 System.out.println("type " + index + ": " + dex.strings().get(type));
69 for (ProtoId protoId : dex.protoIds()) {
77 for (FieldId fieldId : dex.fieldIds()) {
85 for (MethodId methodId : dex.methodIds()) {
96 Dex.Section in = dex.open(tableOfContents.typeLists.off);
101 System.out.print(" " + dex.typeNames().get((int) in.readShort()));
112 for (ClassDef classDef : dex.classDefs()) {