Home
last modified time | relevance | path

Searched refs:typeProto (Results 1 – 5 of 5) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DCustomInlineMethodResolver.java120 TypeProto typeProto = classPath.getClass(className); in parseAndResolveInlineMethod() local
121 if (typeProto instanceof ClassProto) { in parseAndResolveInlineMethod()
122 ClassDef classDef = ((ClassProto)typeProto).getClassDef(); in parseAndResolveInlineMethod()
DMethodAnalyzer.java1806 TypeProto typeProto = classPath.getClass(method.getDefiningClass());
1809 String superclassType = typeProto.getSuperclass();
1814 superType = typeProto;
1970 TypeProto typeProto = classPath.getClass(methodRef.getDefiningClass());
1973 methodIndex = typeProto.findMethodIndexInVtable(methodRef);
1984 Method replacementMethod = typeProto.getMethodByVtableIndex(methodIndex);
1987 String superType = typeProto.getSuperclass();
1991 typeProto = classPath.getClass(superType);
1992 Method resolvedMethod = typeProto.getMethodByVtableIndex(methodIndex);
DRegisterType.java311 public static RegisterType getRegisterType(byte category, @Nullable TypeProto typeProto) { in getRegisterType() argument
349 return new RegisterType(category, typeProto); in getRegisterType()
DClassProto.java425 TypeProto typeProto = thisChain.get(i); in getCommonSuperclass() local
426 if (typeProto.getType().equals(otherChain.get(i).getType())) { in getCommonSuperclass()
427 return typeProto; in getCommonSuperclass()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/util/
DTypeProtoUtils.java55 public static Iterable<TypeProto> getSuperclassChain(@Nonnull final TypeProto typeProto) { in getSuperclassChain() argument
60 @Nullable private TypeProto type = getSuperclassAsTypeProto(typeProto); in getSuperclassChain()