Home | History | Annotate | Download | only in invoke

Lines Matching defs:ptype

572                 final Class<?> ptype = ptypes[i];
573 if (!ptype.isPrimitive()) {
574 arguments[i] = reader.nextReference(ptype);
575 } else if (ptype == boolean.class) {
577 } else if (ptype == byte.class) {
579 } else if (ptype == char.class) {
581 } else if (ptype == short.class) {
583 } else if (ptype == int.class) {
585 } else if (ptype == long.class) {
587 } else if (ptype == float.class) {
589 } else if (ptype == double.class) {
592 throw new AssertionError("Unexpected type: " + ptype);
602 final Class<?> ptype = ptypes[idx];
605 if (!ptype.isPrimitive()) {
606 writer.putNextReference(argument, ptype);
607 } else if (ptype == boolean.class) {
609 } else if (ptype == byte.class) {
611 } else if (ptype == char.class) {
613 } else if (ptype == short.class) {
615 } else if (ptype == int.class) {
617 } else if (ptype == long.class) {
619 } else if (ptype == float.class) {
621 } else if (ptype == double.class) {
624 throw new AssertionError("Unexpected type: " + ptype);
715 // The last ptype is in the same position as the arity
934 Class<?> ptype) {
935 switch (Wrapper.basicTypeChar(ptype)) {
936 case 'L': { writer.putNextReference(reader.nextReference(ptype), ptype); break; }
945 default: throw new InternalError("Unexpected type: " + ptype);
960 Class<?> ptype = targetMethodType.ptypes()[i];
961 copyParameter(callerReader, targetWriter, ptype);
1489 final Class<?> ptype = ptypes[i];
1500 // Note that filter.type() must be (ptype)ptype - this is checked before
1515 copyNext(filterReader, writer, ptype);
1519 copyNext(reader, writer, ptype);
1727 final Class<?> ptype = ptypes[i + pos];
1728 if (ptype.isPrimitive()) {
1729 if (ptype == boolean.class) {
1731 } else if (ptype == byte.class) {
1733 } else if (ptype == char.class) {
1735 } else if (ptype == short.class) {
1737 } else if (ptype == int.class) {
1739 } else if (ptype == long.class) {
1741 } else if (ptype == float.class) {
1743 } else if (ptype == double.class) {
1747 bytesCopied += EmulatedStackFrame.getSize(ptype);
1749 writer.putNextReference(values[i], ptype);