Searched defs:getCommonSuperclass (Results 1 - 5 of 5) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DPrimitiveProto.java56 @Nonnull @Override public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { method in class:PrimitiveProto
57 throw new ExceptionWithContext("Cannot call getCommonSuperclass on PrimitiveProto");
H A DTypeProto.java46 @Nonnull TypeProto getCommonSuperclass(@Nonnull TypeProto other); method in interface:TypeProto
H A DUnknownClassProto.java53 @Nonnull @Override public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { method in class:UnknownClassProto
H A DArrayProto.java99 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { method in class:ArrayProto
113 TypeProto mergedClass = thisClass.getCommonSuperclass(otherClass);
140 // otherwise, defer to the other class' getCommonSuperclass
141 return other.getCommonSuperclass(this);
H A DClassProto.java233 * This is a helper method for getCommonSuperclass
269 // continue in getCommonSuperclass
279 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) { method in class:ClassProto
282 return other.getCommonSuperclass(this);

Completed in 1273 milliseconds