Home | History | Annotate | Download | only in invoke

Lines Matching defs:ptype

91     private static final long serialVersionUID = 292L;  // {rtype, {ptype...}}
168 private static void checkPtype(Class<?> ptype) {
169 Objects.requireNonNull(ptype);
170 if (ptype == void.class)
176 for (Class<?> ptype : ptypes) {
177 checkPtype(ptype);
178 if (ptype == double.class || ptype == long.class) {
509 Class<?> ptype;
511 (ptype = ptypes[0]).isPrimitive())
513 return ptype;
780 for (Class<?> ptype : ptypes)
781 hashCode = 31*hashCode + ptype.hashCode();