Searched refs:pt (Results 1 – 3 of 3) sorted by relevance
54 Class<?> pt = parseSig(str, i, end, loader); in parseMethod() local55 if (pt == null || pt == void.class) in parseMethod()57 ptypes.add(pt); in parseMethod()118 for (Class<?> pt : ptypes) in unparseMethod()119 unparseSig(pt, sb); in unparseMethod()
179 Class<?> pt = epts[i]; in MethodTypeForm() local180 if (pt != Object.class) { in MethodTypeForm()182 Wrapper w = Wrapper.forPrimitiveType(pt); in MethodTypeForm()184 if (w.isSubwordOrInt() && pt != int.class) { in MethodTypeForm()228 Class<?> pt = epts[i]; in MethodTypeForm() local229 Wrapper w = Wrapper.forBasicType(pt); in MethodTypeForm()
683 private static MethodType wrapWithPrims(MethodType pt) { in wrapWithPrims() argument684 assert(pt.hasPrimitives()); in wrapWithPrims()685 MethodType wt = pt.wrapAlt; in wrapWithPrims()688 wt = MethodTypeForm.canonicalize(pt, MethodTypeForm.WRAP, MethodTypeForm.WRAP); in wrapWithPrims()690 pt.wrapAlt = wt; in wrapWithPrims()