Lines Matching defs:findStatic

516     private static MethodHandle findStatic(String name,
520 return LOOKUP.findStatic(LOOKUP.lookupClass(), name, methodType(rtype, ptypes));
525 private static MethodHandle findStatic(String name,
528 return findStatic(name, rtype, ptypes.toArray(new Class<?>[ptypes.size()]));
563 opI4 = findStatic("opI4", int.class, int.class, int.class, int.class, int.class);
564 opI3 = findStatic("opI3", int.class, int.class, int.class, int.class);
565 opI2 = findStatic("opI2", int.class, int.class, int.class);
566 opI = findStatic("opI", int.class, int.class);
567 opI_L = findStatic("opI_L", Object.class, int.class);
568 opJ = findStatic("opJ", long.class, long.class);
569 opJ2 = findStatic("opJ2", long.class, long.class, long.class);
570 opJ3 = findStatic("opJ3", long.class, long.class, long.class, long.class);
571 opL2 = findStatic("opL2", Object.class, Object.class, Object.class);
572 opL = findStatic("opL", Object.class, Object.class);
573 opL2_I = findStatic("opL2_I", int.class, Object.class, Object.class);
574 opL_I = findStatic("opL_I", int.class, Object.class);
575 opL_J = findStatic("opL_J", long.class, Object.class);
591 addI = findStatic("addI", int.class, int.class, int.class);
592 addL = findStatic("addL", Object.class, Object.class, Object.class);
601 private static final MethodHandle list8ints = findStatic("list8ints", Object.class,
603 private static final MethodHandle list8longs = findStatic("list8longs", Object.class,
644 convI_L = findStatic("convI_L", Object.class, int.class);
645 convL_I = findStatic("convL_I", int.class, Object.class);
646 convJ_L = findStatic("convJ_L", Object.class, long.class);
647 convL_J = findStatic("convL_J", long.class, Object.class);
648 convJ_I = findStatic("convJ_I", int.class, long.class);
649 convI_J = findStatic("convI_J", long.class, int.class);