Home | History | Annotate | Download | only in dex

Lines Matching refs:dex

17 package com.android.dex;
19 import com.android.dex.util.Unsigned;
22 private final Dex dex;
27 public MethodId(Dex dex, int declaringClassIndex, int protoIndex, int nameIndex) {
28 this.dex = dex;
57 public void writeTo(Dex.Section out) {
65 if (dex == null) {
68 return dex.typeNames().get(declaringClassIndex)
69 + "." + dex.strings().get(nameIndex)
70 + dex.readTypeList(dex.protoIds().get(protoIndex).getParametersOffset());