Searched refs:getMethodDescriptor (Results 1 - 18 of 18) sorted by relevance

/openjdk10/nashorn/buildtools/nasgen/src/jdk/nashorn/internal/tools/nasgen/
H A DStringConstants.java60 static final String DEFAULT_INIT_DESC = Type.getMethodDescriptor(Type.VOID_TYPE);
63 static final String SPECIALIZATION_INIT2 = Type.getMethodDescriptor(Type.VOID_TYPE, TYPE_METHODHANDLE, Type.BOOLEAN_TYPE, Type.BOOLEAN_TYPE);
64 static final String SPECIALIZATION_INIT3 = Type.getMethodDescriptor(Type.VOID_TYPE, TYPE_METHODHANDLE, TYPE_CLASS, Type.BOOLEAN_TYPE, Type.BOOLEAN_TYPE);
75 static final String COLLECTION_ADD_DESC = Type.getMethodDescriptor(Type.BOOLEAN_TYPE, TYPE_OBJECT);
77 static final String ARRAYLIST_INIT_DESC = Type.getMethodDescriptor(Type.VOID_TYPE, Type.INT_TYPE);
103 Type.getMethodDescriptor(TYPE_ACCESSORPROPERTY, TYPE_OBJECT, Type.INT_TYPE, TYPE_METHODHANDLE, TYPE_METHODHANDLE);
109 static final String PROPERTYMAP_NEWMAP_DESC = Type.getMethodDescriptor(TYPE_PROPERTYMAP, TYPE_COLLECTION);
114 static final String PROTOTYPEOBJECT_SETCONSTRUCTOR_DESC = Type.getMethodDescriptor(Type.VOID_TYPE, TYPE_OBJECT, TYPE_OBJECT);
119 static final String SCRIPTFUNCTION_SETARITY_DESC = Type.getMethodDescriptor(Type.VOID_TYPE, Type.INT_TYPE);
121 static final String SCRIPTFUNCTION_SETDOCUMENTATIONKEY_DESC = Type.getMethodDescriptor(Typ
[all...]
H A DClassGenerator.java218 return Type.getMethodDescriptor(memInfoType(memInfo));
222 return Type.getMethodDescriptor(Type.VOID_TYPE, memInfoType(memInfo));
/openjdk10/jdk/src/java.desktop/share/classes/java/beans/
H A DEventSetDescriptor.java48 private MethodDescriptor getMethodDescriptor; field in class:EventSetDescriptor
418 return getMethod(this.getMethodDescriptor);
428 getMethodDescriptor = new MethodDescriptor(method);
504 getMethodDescriptor = x.getMethodDescriptor;
505 if (y.getMethodDescriptor != null) {
506 getMethodDescriptor = y.getMethodDescriptor;
533 getMethodDescriptor = old.getMethodDescriptor;
[all...]
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/commons/
H A DMethod.java128 this(name, Type.getMethodDescriptor(returnType, argumentTypes));
140 return new Method(m.getName(), Type.getMethodDescriptor(m));
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/
H A DSharedScopeCall.java182 staticSignature = Type.getMethodDescriptor(returnType, Type.typeFor(ScriptObject.class), Type.INT);
188 staticSignature = Type.getMethodDescriptor(returnType, params);
H A DFunctionSignature.java137 this.descriptor = Type.getMethodDescriptor(returnType, paramTypes);
H A DCompilerConstants.java311 return Type.getMethodDescriptor(rtype, ptypes);
H A DClassEmitter.java576 Type.getMethodDescriptor(functionNode.getReturnType().getTypeClass(), RewriteException.class),
H A DMethodEmitter.java2106 final String descriptor = Type.getMethodDescriptor(returnType, paramTypes);
2227 Type.getMethodDescriptor(type, Type.OBJECT), LINKERBOOTSTRAP, flags | dynGetOperation(isMethod, isIndex));
2291 final String signature = Type.getMethodDescriptor(resultType, Type.OBJECT /*e.g STRING->OBJECT*/, index);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/
H A DUntrustedInterfaces.java257 MethodVisitor callMe = cw.visitMethod(Opcodes.ACC_PUBLIC, "callMe", Type.getMethodDescriptor(Type.INT_TYPE, Type.getType(CallBack.class)), null, null);
263 callMe.visitMethodInsn(Opcodes.INVOKEINTERFACE, Type.getInternalName(CallBack.class), "callBack", Type.getMethodDescriptor(Type.INT_TYPE, Type.getType(TestInterface.class)), true);
268 MethodVisitor getList = cw.visitMethod(Opcodes.ACC_PUBLIC, "get", Type.getMethodDescriptor(Type.getType(TestInterface.class)), null, null);
/openjdk10/jdk/src/java.base/share/classes/jdk/internal/org/objectweb/asm/
H A DType.java286 return getType(getMethodDescriptor(returnType, argumentTypes));
341 return getType(getMethodDescriptor(m));
673 public static String getMethodDescriptor(final Type returnType, method in class:Type
761 public static String getMethodDescriptor(final Method m) { method in class:Type
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/linker/
H A DJavaAdapterServices.java221 Type.getMethodDescriptor(Type.VOID_TYPE, methodHandleType, objectType), null, null));
225 mv.invokevirtual(methodHandleType.getInternalName(), "invokeExact", Type.getMethodDescriptor(
H A DJavaAdapterBytecodeGenerator.java203 private static final String GET_METHOD_PROPERTY_METHOD_DESCRIPTOR = Type.getMethodDescriptor(OBJECT_TYPE, SCRIPT_OBJECT_TYPE);
204 private static final String VOID_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE);
214 private static final String FINALIZER_DELEGATE_METHOD_DESCRIPTOR = Type.getMethodDescriptor(Type.VOID_TYPE, OBJECT_TYPE);
432 Type.getMethodDescriptor(originalCtorType.getReturnType(), argTypes), null, null));
471 Type.getMethodDescriptor(originalCtorType.getReturnType(), newArgTypes), null, null));
503 Type.getMethodDescriptor(originalCtorType.getReturnType(), newArgTypes), null, null));
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DType.java524 public static String getMethodDescriptor( method in class:Type
635 public static String getMethodDescriptor(final Method m) { method in class:Type
/openjdk10/jdk/test/java/lang/instrument/asmlib/
H A DInstrumentor.java84 mv.visitMethodInsn(Opcodes.INVOKEVIRTUAL, Type.getInternalName(PrintStream.class), "println", Type.getMethodDescriptor(Type.VOID_TYPE, Type.getType(String.class)), false);
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/codegen/types/
H A DType.java191 public static String getMethodDescriptor(final Type returnType, final Type... types) { method in class:Type
196 return jdk.internal.org.objectweb.asm.Type.getMethodDescriptor(returnType.getInternalType(), itypes);
207 public static String getMethodDescriptor(final Class<?> returnType, final Class<?>... types) { method in class:Type
212 return jdk.internal.org.objectweb.asm.Type.getMethodDescriptor(getInternalType(returnType), itypes);
/openjdk10/jdk/src/java.base/share/classes/java/lang/invoke/
H A DInnerClassLambdaMetafactory.java55 private static final String METHOD_DESCRIPTOR_VOID = Type.getMethodDescriptor(Type.VOID_TYPE);
/openjdk10/jdk/src/java.base/share/classes/java/lang/reflect/
H A DProxyGenerator.java898 String desc = getMethodDescriptor(parameterTypes, returnType);
1449 private static String getMethodDescriptor(Class<?>[] parameterTypes, method in class:ProxyGenerator

Completed in 212 milliseconds