Home
last modified time | relevance | path

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

/external/emma/core/java12/com/vladium/jcd/lib/
DTypes.java185 public static String descriptorToReturnType (String methoddescriptor) in descriptorToReturnType() argument
187 final int i1 = methoddescriptor.indexOf ('('); in descriptorToReturnType()
188 final int i2 = methoddescriptor.lastIndexOf (')'); in descriptorToReturnType()
190 if ((i1 < 0) || (i2 <= 0) || (i1 >= i2) || (i2 >= methoddescriptor.length () - 1)) in descriptorToReturnType()
191 … throw new IllegalArgumentException ("malformed method descriptor: [" + methoddescriptor + "]"); in descriptorToReturnType()
193 …return methoddescriptor.substring (i2 + 1); … in descriptorToReturnType()
197 public static String [] descriptorToParameterTypes (String methoddescriptor) in descriptorToParameterTypes() argument
203 … final methodDescriptorCompiler compiler = new methodDescriptorCompiler (methoddescriptor); in descriptorToParameterTypes()
209 … throw new IllegalArgumentException ("error parsing [" + methoddescriptor + "]: " + e.toString ()); in descriptorToParameterTypes()
338 public static String methodDescriptorToUserName (final String methoddescriptor) in methodDescriptorToUserName() argument
[all …]