Home | History | Annotate | Download | only in invoke

Lines Matching refs:targetType

977          * Suppose the targetType is (T0, T1, T2[])RT and the callerType is (C0, C1, C2, C3)RC
981 MethodType targetType) {
982 final int ptypesLength = targetType.ptypes().length;
988 ptypes[ptypesLength - 1] = targetType.ptypes()[ptypesLength - 1];
997 private final MethodType targetType;
1001 Invoker(MethodType targetType, boolean isExactInvoker) {
1002 super(targetType.insertParameterTypes(0, MethodHandle.class));
1003 this.targetType = targetType;
1016 if (!targetType.equals(callType)) {
1017 throw new WrongMethodTypeException("Wrong type, Expected: " + targetType
1026 EmulatedStackFrame targetFrame = EmulatedStackFrame.create(targetType);
1364 final Class<?> targetType = target.type().ptypes()[arrayOffset];
1365 final Class<?> targetComponentType = targetType.getComponentType();
1373 writer.putNextReference(arr, targetType);