Home
last modified time | relevance | path

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

/libcore/ojluni/src/main/java/java/lang/constant/
DConstantDescs.java239 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");
DClassDesc.java78 return ClassDesc.ofDescriptor("L" + binaryToInternal(name) + ";"); in of()
101 return ofDescriptor("L" + binaryToInternal(packageName) + in of()
129 static ClassDesc ofDescriptor(String descriptor) { in ofDescriptor() method
178 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()
DMethodTypeDesc.java53 static MethodTypeDesc ofDescriptor(String descriptor) { in ofDescriptor() method
54 return MethodTypeDescImpl.ofDescriptor(descriptor); in ofDescriptor()
DMethodTypeDescImpl.java70 static MethodTypeDescImpl ofDescriptor(String descriptor) { in ofDescriptor() method in MethodTypeDescImpl
73 …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()
DMethodHandleDesc.java86 return ofField(kind, owner, name, ClassDesc.ofDescriptor(lookupDescriptor)); in of()
88 …turn new DirectMethodHandleDescImpl(kind, owner, name, MethodTypeDesc.ofDescriptor(lookupDescripto… in of()
DDynamicConstantDesc.java307 return ClassDesc.ofDescriptor(desc.constantName); in canonicalizePrimitiveClass()
/libcore/ojluni/src/test/java/lang/constant/access_test/pkg1/
DMethodTypeDescriptorAccessTest.java52 MethodTypeDesc mtdpub = MethodTypeDesc.ofDescriptor(descriptorpub); in test()
57 MethodTypeDesc mtdnp = MethodTypeDesc.ofDescriptor(descriptornp); in test()
62 mtdnp = MethodTypeDesc.ofDescriptor(descriptornp); in test()
/libcore/ojluni/src/main/java/java/lang/
DClass.java4904 : Optional.of(ClassDesc.ofDescriptor(descriptorString())); in describeConstable()