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

/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DClassPath.java160 javaLangObjectClassDef = getClassDef("Ljava/lang/Object;", false);
263 public static ClassDef getClassDef(String classType, boolean createUnresolvedClassDef) { method in class:ClassPath
291 public static ClassDef getClassDef(String classType) { method in class:ClassPath
292 return getClassDef(classType, true);
295 public static ClassDef getClassDef(TypeIdItem classType) { method in class:ClassPath
296 return getClassDef(classType.getTypeDescriptor());
299 public static ClassDef getClassDef(TypeIdItem classType, boolean creatUnresolvedClassDef) { method in class:ClassPath
300 return getClassDef(classType.getTypeDescriptor(), creatUnresolvedClassDef);
308 return getClassDef(arrayPrefix.substring(256 - arrayDimension) + classDef.classType);
451 elementClass = ClassPath.getClassDef(arrayClassTyp
[all...]

Completed in 93 milliseconds