Home
last modified time | relevance | path

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

/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java178 public static Class descriptorToType (String typedescriptor) throws ClassNotFoundException in descriptorToType() argument
180 return new typeDescriptorCompiler ().descriptorToClass (typedescriptor); in descriptorToType()
333 public static String typeDescriptorToUserName (final String typedescriptor) in typeDescriptorToUserName() argument
335 return new typeDescriptorCompiler2 ().descriptorToClass (typedescriptor); in typeDescriptorToUserName()
495 Class descriptorToClass (String typedescriptor) throws ClassNotFoundException in descriptorToClass() argument
497 char first = typedescriptor.charAt (0); in descriptorToClass()
501 return arrayOf (typedescriptor.substring (1)); in descriptorToClass()
504 …return Class.forName (vmNameToJavaName (typedescriptor.substring (1, typedescriptor.length() - 1))… in descriptorToClass()
512 Class arrayOf (String typedescriptor) throws ClassNotFoundException in arrayOf() argument
514 char first = typedescriptor.charAt (0); in arrayOf()
[all …]