Searched refs:ofDescriptor (Results 1 – 8 of 8) sorted by relevance
239 public static final ClassDesc CD_int = ClassDesc.ofDescriptor("I");242 public static final ClassDesc CD_long = ClassDesc.ofDescriptor("J");245 public static final ClassDesc CD_float = ClassDesc.ofDescriptor("F");248 public static final ClassDesc CD_double = ClassDesc.ofDescriptor("D");251 public static final ClassDesc CD_short = ClassDesc.ofDescriptor("S");254 public static final ClassDesc CD_byte = ClassDesc.ofDescriptor("B");257 public static final ClassDesc CD_char = ClassDesc.ofDescriptor("C");260 public static final ClassDesc CD_boolean = ClassDesc.ofDescriptor("Z");263 public static final ClassDesc CD_void = ClassDesc.ofDescriptor("V");
78 return ClassDesc.ofDescriptor("L" + binaryToInternal(name) + ";"); in of()101 return ofDescriptor("L" + binaryToInternal(packageName) + in of()129 static ClassDesc ofDescriptor(String descriptor) { in ofDescriptor() method178 return ClassDesc.ofDescriptor("[".repeat(rank) + descriptorString()); in arrayType()202 return ClassDesc.ofDescriptor(dropLastChar(descriptorString()) + "$" + nestedName + ";"); in nested()266 return isArray() ? ClassDesc.ofDescriptor(descriptorString().substring(1)) : null; in componentType()
53 static MethodTypeDesc ofDescriptor(String descriptor) { in ofDescriptor() method54 return MethodTypeDescImpl.ofDescriptor(descriptor); in ofDescriptor()
70 static MethodTypeDescImpl ofDescriptor(String descriptor) { in ofDescriptor() method in MethodTypeDescImpl73 …ClassDesc[] paramTypes = types.stream().skip(1).map(ClassDesc::ofDescriptor).toArray(ClassDesc[]::… in ofDescriptor()74 return new MethodTypeDescImpl(ClassDesc.ofDescriptor(types.get(0)), paramTypes); in ofDescriptor()
86 return ofField(kind, owner, name, ClassDesc.ofDescriptor(lookupDescriptor)); in of()88 …turn new DirectMethodHandleDescImpl(kind, owner, name, MethodTypeDesc.ofDescriptor(lookupDescripto… in of()
307 return ClassDesc.ofDescriptor(desc.constantName); in canonicalizePrimitiveClass()
52 MethodTypeDesc mtdpub = MethodTypeDesc.ofDescriptor(descriptorpub); in test()57 MethodTypeDesc mtdnp = MethodTypeDesc.ofDescriptor(descriptornp); in test()62 mtdnp = MethodTypeDesc.ofDescriptor(descriptornp); in test()
4904 : Optional.of(ClassDesc.ofDescriptor(descriptorString())); in describeConstable()