Searched defs:methodType (Results 1 - 3 of 3) sorted by relevance

/libcore/ojluni/src/lambda/java/java/lang/invoke/
H A DMethodType.java34 MethodType methodType(Class<?> rtype, Class<?>[] ptypes) { method in class:MethodType
39 MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) { method in class:MethodType
44 MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) { return null; } method in class:MethodType
47 MethodType methodType(Class<?> rtype) { return null; } method in class:MethodType
50 MethodType methodType(Class<?> rtype, Class<?> ptype0) { return null; } method in class:MethodType
53 MethodType methodType(Class<?> rtype, MethodType ptypes) { return null; } method in class:MethodType
/libcore/ojluni/src/main/java/java/lang/invoke/
H A DMethodType.java209 MethodType methodType(Class<?> rtype, Class<?>[] ptypes) { method in class:MethodType
215 * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
223 MethodType methodType(Class<?> rtype, List<Class<?>> ptypes) { method in class:MethodType
236 * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
246 MethodType methodType(Class<?> rtype, Class<?> ptype0, Class<?>... ptypes) { method in class:MethodType
255 * Convenience method for {@link #methodType(java.lang.Class, java.lang.Class[]) methodType}.
262 MethodType methodType(Clas method in class:MethodType
277 MethodType methodType(Class<?> rtype, Class<?> ptype0) { method in class:MethodType
292 MethodType methodType(Class<?> rtype, MethodType ptypes) { method in class:MethodType
[all...]
H A DMethodHandles.java763 "asList", methodType(List.class, Object[].class));
801 MethodType methodType) {
802 MethodHandle mh = new MethodHandleImpl(method.getArtMethod(), handleKind, methodType);
846 "concat", methodType(String.class, String.class));
848 "hashCode", methodType(int.class));
850 "hashCode", methodType(int.class));
856 "subSequence", methodType(CharSequence.class, int.class, int.class));
859 MethodType MT_newString = methodType(void.class); //()V for new String()
940 ArrayList.class, methodType(void.class, Collection.class));
947 ProcessBuilder.class, methodType(voi
800 createMethodHandle(Method method, int handleKind, MethodType methodType) argument
1673 checkReturnType(Method method, MethodType methodType) argument
[all...]

Completed in 101 milliseconds