Lines Matching refs:Dex
51 public final class Dex { class
74 public Dex(byte[] data) throws IOException { in Dex() method in Dex
78 private Dex(ByteBuffer data) throws IOException { in Dex() method in Dex
87 public Dex(int byteCount) throws IOException { in Dex() method in Dex
95 public Dex(InputStream in) throws IOException { in Dex() method in Dex
106 public Dex(File file) throws IOException { in Dex() method in Dex
397 return new TypeList(Dex.this, types); in readTypeList()
426 return new FieldId(Dex.this, declaringClassIndex, typeIndex, nameIndex); in readFieldId()
433 return new MethodId(Dex.this, declaringClassIndex, protoIndex, nameIndex); in readMethodId()
440 return new ProtoId(Dex.this, shortyIndex, returnTypeIndex, parametersOffset); in readProtoId()
445 return new CallSiteId(Dex.this, offset); in readCallSiteId()
453 return new MethodHandle(Dex.this, methodHandleType, unused1, fieldOrMethodId, unused2); in readMethodHandle()
466 return new ClassDef(Dex.this, offset, type, accessFlags, supertype, in readClassDef()
600 return new Annotation(Dex.this, visibility, new EncodedValue(getBytesFrom(start))); in readAnnotation()
790 private final Dex.Section in = open(tableOfContents.classDefs.off);