Examples of ProtoId


Examples of com.android.dex.ProtoId

  private MethodInfo(DexNode dex, int mthIndex) {
    MethodId mthId = dex.getMethodId(mthIndex);
    name = dex.getString(mthId.getNameIndex());
    declClass = ClassInfo.fromDex(dex, mthId.getDeclaringClassIndex());

    ProtoId proto = dex.getProtoId(mthId.getProtoIndex());
    retType = dex.getType(proto.getReturnTypeIndex());
    args = dex.readParamList(proto.getParametersOffset());

    StringBuilder signature = new StringBuilder();
    signature.append(name);
    signature.append('(');
    for (ArgType arg : args) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.