Home
last modified time | relevance | path

Searched refs:changeParameterType (Results 1 – 25 of 322) sorted by path

12345678910>>...13

/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/java.base/share/classes/java/lang/invoke/
H A DInvokerBytecodeGenerator.java1767 type = type.changeParameterType(0, MethodHandle.class); in generateLambdaFormInterpreterEntryPoint()
H A DMethodHandleImpl.java290 midType = midType.changeParameterType(i, newType); in makePairwiseConvertByEditor()
485 target = target.asType(type.changeParameterType(last, arrayType)); in makeVarargsCollector()
622 targetType = targetType.changeParameterType(spreadArgPos + i, arg); in makeSpreadArguments()
H A DMethodHandles.java2256 MethodType narrowType = rawType.changeParameterType(0, caller); in restrictReceiver()
3878 MethodType newType = targetType.changeParameterType(pos, newParamType); in filterArgument()
5740 iteratorType = startIter.type().changeParameterType(0, iterableType); in iteratedLoop()
5946 cleanup = cleanup.asType(cleanup.type().changeParameterType(0, Throwable.class)); in tryFinally()
H A DMethodType.java375 public MethodType changeParameterType(int num, Class<?> nptype) { in changeParameterType() method in MethodType
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.dynalink/share/classes/jdk/dynalink/linker/support/
H A DGuards.java212 …return MethodHandles.permuteArguments(test.asType(test.type().changeParameterType(0, type.paramete… in asType()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DObjectClassGenerator.java715 return MH.asType(objectSetter, objectSetter.type().changeParameterType(1, type)); in createSetter()
724 return MH.asType(primitiveSetter, pmt.changeParameterType(1, int.class)); in createSetter()
734 …n MH.asType(MH.filterArguments(primitiveSetter, 1, PACK_DOUBLE), pmt.changeParameterType(1, type)); in createSetter()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/lookup/
H A DLookup.java162 return MH.explicitCastArguments(mh, mh.type().changeParameterType(n, from)); in filterArgumentType()
H A DMethodHandleFactory.java302 … traceReturn.type().changeParameterType(0, retType).changeReturnType(retType))); in addDebugPrintout()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DGlobal.java3098 …return invocation.asType(type.changeParameterType(0, Object.class)).filterArguments(0, LEXICAL_SCO…
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DCompiledFunction.java295 …final MethodType newType = type.changeParameterType(0, Object.class).changeParameterType(1, Script… in swapCalleeAndThis()
H A DFindProperty.java137 … superGetter = MH.asType(superGetter, superGetter.type().changeParameterType(0, Object.class)); in insertAccessorsGetter()
H A DGlobalConstants.java387 …lidator = MH.asType(boundInvalidator, boundInvalidator.type().changeParameterType(0, receiver… in findSetMethod()
H A DOptimisticReturnFilters.java65 INT_DOUBLE.asType(INT_DOUBLE.type().changeParameterType(0, float.class)),
141 return guard.asType(guard.type().changeParameterType(0, provable)); in getOptimisticTypeGuard()
H A DRecompilableScriptFunctionData.java855 …MethodType toType = needsCallee(fromType) ? callSiteType.changeParameterType(0, ScriptFunction.cla… in addCode()
869 toType = toType.changeParameterType(i, fromParam); in addCode()
H A DScriptFunction.java1052 appliedType = appliedType.changeParameterType(1, Object.class); in createApplyOrCallCall()
1075 appliedType = appliedType.changeParameterType(2, Object[].class); in createApplyOrCallCall()
H A DScriptFunctionData.java620 newType = newType.changeParameterType(type.parameterCount() - 1, Object[].class);
623 newType = newType.changeParameterType(0, ScriptFunction.class);
H A DSetMethodCreator.java163 casMap = MH.asType(casMap, casMap.type().changeParameterType(0, Object.class)); in createExistingPropertySetter()
207 slowSetter = MH.asType(slowSetter, slowSetter.type().changeParameterType(0, Object.class)); in createNewSetter()
214 casMap = MH.asType(casMap, casMap.type().changeParameterType(0, Object.class)); in createNewSetter()
221 extCheck = MH.asType(extCheck, extCheck.type().changeParameterType(0, Object.class)); in createNewSetter()
H A DWithObject.java232 final MethodType newInvType = invType.changeParameterType(0, filter.type().returnType()); in fixReceiverType()
259 changeParameterType( in fixExpressionCallSite()
289 receiverFilter.type().changeParameterType(0, receiverType). in filterGuardReceiver()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DContinuousArrayData.java183 mh = MH.asType(mh, mh.type().changeReturnType(returnType).changeParameterType(0, clazz)); in getContinuousElementGetter()
200 …return MH.asType(setHas, setHas.type().changeParameterType(2, elementType).changeParameterType(0, … in getContinuousElementSetter()
H A DNumberArrayData.java224 …) ? getContinuousElementSetter(MH.asType(SET_ELEM, SET_ELEM.type().changeParameterType(2, elementT… in getElementSetter()
H A DTypedArrayData.java179 return MH.asType(mh, mh.type().changeParameterType(0, clazz)); in getContinuousElementSetter()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DBoundCallableLinker.java99 … MethodType newMethodType = descriptor.getMethodType().changeParameterType(0, callable.getClass()); in getGuardedInvocation()
102 …newMethodType = newMethodType.changeParameterType(1, boundThis == null? Object.class : boundThis.g… in getGuardedInvocation()
130 …inv.replaceMethods(droppingHandle, newGuard.asType(newGuard.type().changeParameterType(0, p0Type))… in getGuardedInvocation()
H A DJavaSuperAdapterLinker.java106 type.changeParameterType(0, adapterClass)); in getGuardedInvocation()
H A DLinkerCallSite.java131 …return MH.asType(missCounterWithDesc, missCounterWithDesc.type().changeParameterType(0, type).chan… in getIncreaseMissCounter()
H A DNashornBeansLinker.java145 …desc.getMethodType().changeParameterType(0, Object.class).changeParameterType(1, callType.paramete… in getGuardedInvocation()

12345678910>>...13