Searched refs:MethodType (Results 201 - 225 of 301) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/compiler/jsr292/NonInlinedCall/
H A DInvokeTest.java48 import java.lang.invoke.MethodType;
67 MethodType mtype = MethodType.methodType(Class.class);
/openjdk10/jdk/test/java/lang/invoke/
H A DRevealDirectTest.java47 import static java.lang.invoke.MethodType.*;
169 List<MethodType> types = new ArrayList<>();
189 static List<Member> getPolyMembers(Class<?> cls, String name, List<MethodType> types) {
192 for (MethodType type : types) {
411 final MethodType type;
412 SignaturePolymorphicMethod(String name, MethodType type) {
435 public MethodType getMethodType() { return type; }
474 static MethodType type(Member mem, byte kind) {
509 MethodType type = methodType(m.getReturnType(), m.getParameterTypes());
553 MethodType typ
[all...]
H A DCallStaticInitOrder.java42 import static java.lang.invoke.MethodType.*;
241 private static CallSite bsm(Lookup caller, String name, MethodType type) throws ReflectiveOperationException {
268 methodType(CallSite.class, Lookup.class, String.class, MethodType.class));
/openjdk10/jdk/test/java/lang/invoke/modules/m1/p1/
H A DMain.java29 import java.lang.invoke.MethodType;
362 MethodType mt = MethodType.methodType(rtype, ptypes);
/openjdk10/jdk/test/sun/net/www/protocol/jar/
H A DMultiReleaseJarURLConnection.java40 import java.lang.invoke.MethodType;
189 MethodType mt = MethodType.methodType(int.class);
/openjdk10/jdk/test/jdk/nio/zipfs/
H A DMultiReleaseJarTest.java39 import java.lang.invoke.MethodType;
59 final private MethodType mt = MethodType.methodType(int.class);
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/beans/
H A DOverloadedMethod.java88 import java.lang.invoke.MethodType;
109 private final MethodType callSiteType;
119 final MethodType callSiteType,
H A DStaticClassLinker.java88 import java.lang.invoke.MethodType;
221 MethodType.methodType(Object.class, Class.class, int.class));
225 GET_CLASS = lookup.findVirtual(StaticClass.class, "getRepresentedClass", MethodType.methodType(Class.class));
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DPrimitiveLookup.java33 import java.lang.invoke.MethodType;
145 final MethodType wrapType = wrapFilter.type();
193 private static MethodHandle findOwnMH(final String name, final MethodType type) {
H A DJavaAdapterBytecodeGenerator.java50 import java.lang.invoke.MethodType;
183 MethodType.methodType(CallSite.class, Lookup.class, String.class,
184 MethodType.class, int.class).toMethodDescriptorString(), false);
189 MethodType.methodType(CallSite.class, Lookup.class, String.class,
190 MethodType.class).toMethodDescriptorString(), false);
576 * reflective Method object, a cached MethodType, and the name of the field in the adapter class that will hold the
582 private final MethodType type;
645 final MethodType type = mi.type;
846 private static MethodType getCallMethodType(final boolean isVarArgCall, final MethodType typ
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DTypeEvaluator.java32 import java.lang.invoke.MethodType;
61 private static final MethodType EMPTY_INVOCATION_TYPE = MethodType.methodType(Object.class, ScriptFunction.class, Object.class);
H A DApplySpecialization.java31 import java.lang.invoke.MethodType;
95 private final Deque<MethodType> callSiteTypes = new ArrayDeque<>();
272 final MethodType actualCallSiteType = compiler.getCallSiteType(functionNode);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/arrays/
H A DContinuousArrayData.java34 import java.lang.invoke.MethodType;
230 final MethodType callType = desc.getMethodType();
261 final MethodType callType = desc.getMethodType();
/openjdk10/jdk/test/java/lang/System/LoggerFinder/internal/backend/
H A DLoggerFinderBackendTest.java54 import java.lang.invoke.MethodType;
232 MethodType mt = MethodType.methodType(void.class, Level.class, String.class);
240 MethodType mt = MethodType.methodType(void.class, Level.class, Supplier.class);
248 MethodType mt = MethodType.methodType(void.class, Level.class, String.class,
257 MethodType mt = MethodType.methodType(void.class, Level.class, String.class,
266 MethodType m
[all...]
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/objects/
H A DNativeObject.java38 import java.lang.invoke.MethodType;
133 private static final MethodType MIRROR_GETTER_TYPE = MethodType.methodType(Object.class, ScriptObjectMirror.class);
134 private static final MethodType MIRROR_SETTER_TYPE = MethodType.methodType(Object.class, ScriptObjectMirror.class, Object.class);
782 final MethodType getterType = MethodType.methodType(Object.class, clazz);
783 final MethodType setterType = MethodType.methodType(Object.class, clazz, Object.class);
846 final String name, final MethodType methodTyp
[all...]
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/jvm/
H A DItems.java456 MethodType mtype = (MethodType)member.erasure(types);
485 MethodType mtype = (MethodType)member.erasure(types);
524 MethodType mtype = (MethodType)member.externalType(types);
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xalan/internal/xsltc/compiler/
H A DRelationalExpr.java34 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType;
182 MethodType ptype = lookupPrimop(stable, Operators.getOpNames(_op),
183 new MethodType(Type.Void, tleft, tright));
H A DSymbolTable.java26 import com.sun.org.apache.xalan.internal.xsltc.compiler.util.MethodType;
140 public void addPrimop(String name, MethodType mtype) {
/openjdk10/jdk/test/sun/invoke/util/
H A DValueConversionsTest.java29 import java.lang.invoke.MethodType;
183 MethodType convType = MethodType.methodType(dst.primitiveType(), src.primitiveType());
/openjdk10/jdk/test/jdk/modules/open/
H A DBasic.java35 import java.lang.invoke.MethodType;
312 MethodType mt = MethodType.methodType(void.class);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DRewriteException.java39 import java.lang.invoke.MethodType;
73 public static final Call BOOTSTRAP = staticCallNoLookup(RewriteException.class, "populateArrayBootstrap", CallSite.class, Lookup.class, String.class, MethodType.class, int.class);
145 public static CallSite populateArrayBootstrap(final MethodHandles.Lookup lookup, final String name, final MethodType type, final int startIndex) {
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DInfoFromMemberName.java61 public MethodType getMethodType() {
H A DMethodHandleProxies.java175 MethodType smMT = MethodType.methodType(sm.getReturnType(), sm.getParameterTypes());
/openjdk10/jdk/test/java/lang/invoke/7157574/
H A DTest7157574.java49 import static java.lang.invoke.MethodType.*;
/openjdk10/jdk/test/java/lang/StackWalker/
H A DVerifyStackTrace.java32 import java.lang.invoke.MethodType;
183 MethodType.methodType(void.class, Runnable.class));

Completed in 371 milliseconds

1234567891011>>