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

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
H A DClassProto.java62 public class ClassProto implements TypeProto { class in inherits:TypeProto
69 public ClassProto(@Nonnull ClassPath classPath, @Nonnull String type) { method in class:ClassProto
71 throw new ExceptionWithContext("Cannot construct ClassProto for non reference type: %s", type);
142 ClassProto interfaceProto = (ClassProto) classPath.getClass(interfaceType);
167 ClassProto superclassProto = (ClassProto) classPath.getClass(superclass);
247 private boolean checkInterface(@Nonnull ClassProto other) {
281 if (!(other instanceof ClassProto)) {
299 if (checkInterface((ClassProto)othe
[all...]

Completed in 66 milliseconds