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

  /external/smali/dexlib/src/main/java/org/jf/dexlib/
ClassDefItem.java 46 private @Nullable TypeListItem implementedInterfaces;
66 * @param implementedInterfaces A list of the interfaces that this class implements, or null if none
77 @Nullable TypeListItem implementedInterfaces, @Nullable StringIdItem sourceFile,
85 this.implementedInterfaces = implementedInterfaces;
99 * @param implementedInterfaces A list of the interfaces that this class implements, or null if none
111 @Nullable TypeIdItem superType, @Nullable TypeListItem implementedInterfaces,
122 ClassDefItem classDefItem = new ClassDefItem(dexFile, classType, accessFlags, superType, implementedInterfaces,
132 implementedInterfaces = (TypeListItem)readContext.getOptionalOffsettedItemByOffset(ItemType.TYPE_TYPE_LIST,
154 (implementedInterfaces==null?"":implementedInterfaces.getTypeListString(" ")))
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
ClassPath.java 590 private final TreeSet<ClassDef> implementedInterfaces;
638 implementedInterfaces = new TreeSet<ClassDef>();
639 implementedInterfaces.add(ClassPath.getClassDef("Ljava/lang/Cloneable;"));
640 implementedInterfaces.add(ClassPath.getClassDef("Ljava/io/Serializable;"));
658 implementedInterfaces = null;
672 implementedInterfaces = new TreeSet<ClassDef>();
699 implementedInterfaces = loadAllImplementedInterfaces(classInfo);
778 return implementedInterfaces.contains(interfaceDef);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ObjectInputStreamTest.java 185 Class[] implementedInterfaces = s.getInterfaces();
186 for (index = 0; index < implementedInterfaces.length; index++) {
188 implementedInterfaces[index]);
    [all...]