Lines Matching refs:MH

51     public static final MethodHandleFunctionality MH = MethodHandleFactory.getFunctionality();
66 public static final MethodType GET_OBJECT_TYPE = MH.type(Object.class, Object.class);
69 public static final MethodType SET_OBJECT_TYPE = MH.type(void.class, Object.class, Object.class);
72 public static final MethodType GET_PRIMITIVE_TYPE = MH.type(long.class, Object.class);
75 public static final MethodType SET_PRIMITIVE_TYPE = MH.type(void.class, Object.class, long.class);
150 return MH.filterArguments(mh, n, JSType.TO_INT32_L.methodHandle());
155 return MH.filterArguments(mh, n, JSType.TO_INT32_D.methodHandle());
157 return MH.filterArguments(mh, n, JSType.TO_UINT32_D.methodHandle());
162 return MH.filterArguments(mh, n, JSType.TO_INT32.methodHandle());
164 return MH.filterArguments(mh, n, JSType.TO_UINT32.methodHandle());
166 return MH.filterArguments(mh, n, JSType.TO_NUMBER.methodHandle());
175 return MH.explicitCastArguments(mh, mh.type().changeParameterType(n, from));
196 return MH.filterReturnValue(mh, JSType.TO_INT32_L.methodHandle());
201 return MH.filterReturnValue(mh, JSType.TO_INT32_D.methodHandle());
203 return MH.filterReturnValue(mh, JSType.TO_UINT32_D.methodHandle());
208 return MH.filterReturnValue(mh, JSType.TO_INT32.methodHandle());
210 return MH.filterReturnValue(mh, JSType.TO_UINT32.methodHandle());
212 return MH.filterReturnValue(mh, JSType.TO_NUMBER.methodHandle());
221 return MH.explicitCastArguments(mh, mh.type().changeReturnType(type));
225 return MH.findStatic(MethodHandles.lookup(), Lookup.class, name, MH.type(rtype, types));