HomeSort by relevance Sort by last modified time
    Searched defs:typeProto (Results 1 - 2 of 2) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
CustomInlineMethodResolver.java 120 TypeProto typeProto = classPath.getClass(className);
121 if (typeProto instanceof ClassProto) {
122 ClassDef classDef = ((ClassProto)typeProto).getClassDef();
ClassProto.java 62 public class ClassProto implements TypeProto {
283 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) {
321 List<TypeProto> thisChain = Lists.<TypeProto>newArrayList(this);
324 List<TypeProto> otherChain = Lists.newArrayList(other);
332 TypeProto typeProto = thisChain.get(i);
333 if (typeProto.getType().equals(otherChain.get(i).getType())) {
334 return typeProto;
    [all...]

Completed in 74 milliseconds