Home
last modified time | relevance | path

Searched refs:getClassDef (Results 1 – 8 of 8) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
DClassProto.java86 public ClassDef getClassDef() { in getClassDef() method in ClassProto
93 return classPath.getClassDef(type);
105 ClassDef classDef = getClassDef(); in isInterface()
143 for (String interfaceType: getClassDef().getInterfaces()) {
147 interfaceDef = classPath.getClassDef(interfaceType);
231 for (String interfaceType: getClassDef().getInterfaces()) {
250 ClassDef interfaceDef = classPath.getClassDef(interfaceType);
326 return getClassDef().getSuperclass(); in getSuperclass()
499 ArrayList<Field> fields = getSortedInstanceFields(getClassDef());
700 ArrayList<Field> fields = getSortedInstanceFields(getClassDef());
[all …]
DClassPath.java148 public ClassDef getClassDef(String type) { in getClassDef() method in ClassPath
150 ClassDef classDef = provider.getClassDef(type); in getClassDef()
DClassProvider.java39 @Nullable ClassDef getClassDef(String type); in getClassDef() method
DDexClassProvider.java53 @Nullable @Override public ClassDef getClassDef(String type) { in getClassDef() method in DexClassProvider
DAnalyzedMethodUtil.java62 ClassDef methodClassDef = classPath.getClassDef(virtualMethod.getDefiningClass()); in canAccess()
DMethodAnalyzer.java1699 ClassDef thisClass = classPath.getClassDef(method.getDefiningClass());
1701 …if (!TypeUtils.canAccessClass(thisClass.getType(), classPath.getClassDef(resolvedField.getDefining…
1705 ClassDef fieldClass = classPath.getClassDef(objectRegisterTypeProto.getType());
1713 fieldClass = classPath.getClassDef(superclass);
1828 ClassDef thisClass = classPath.getClassDef(method.getDefiningClass());
1833 thisClass.getType(), classPath.getClassDef(resolvedMethod.getDefiningClass()))) {
1837 ClassDef methodClass = classPath.getClassDef(objectRegisterTypeProto.getType());
1845 methodClass = classPath.getClassDef(superclass);
DCustomInlineMethodResolver.java122 ClassDef classDef = ((ClassProto)typeProto).getClassDef(); in parseAndResolveInlineMethod()
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/analysis/
DSmalideaClassProvider.java24 @Nullable @Override public ClassDef getClassDef(String type) { in getClassDef() method in SmalideaClassProvider