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

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
TypeProto.java 47 @Nonnull TypeProto getCommonSuperclass(@Nonnull TypeProto other);
UnknownClassProto.java 54 @Nonnull @Override public TypeProto getCommonSuperclass(@Nonnull TypeProto other) {
PrimitiveProto.java 57 @Nonnull @Override public TypeProto getCommonSuperclass(@Nonnull TypeProto other) {
58 throw new ExceptionWithContext("Cannot call getCommonSuperclass on PrimitiveProto");
ArrayProto.java 100 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) {
114 TypeProto mergedClass = thisClass.getCommonSuperclass(otherClass);
141 // otherwise, defer to the other class' getCommonSuperclass
142 return other.getCommonSuperclass(this);
ClassProto.java 237 * This is a helper method for getCommonSuperclass
273 // continue in getCommonSuperclass
283 public TypeProto getCommonSuperclass(@Nonnull TypeProto other) {
286 return other.getCommonSuperclass(this);
    [all...]

Completed in 116 milliseconds