Lines Matching refs:caller
145 private static CallSite bsm(Lookup caller, String name, MethodType type) throws ReflectiveOperationException {
146 // ignore caller and name, but match the type:
147 Object bsmInfo = Arrays.asList(caller, name, type);
170 final Lookup caller;
174 PrintingCallSite(Lookup caller, String name, MethodType type, Object... staticArgs) throws Throwable {
176 this.caller = caller;
190 List<Object> bsmInfo = new ArrayList<>(Arrays.asList(caller, name, type()));
201 private static CallSite bsm2(Lookup caller, String name, MethodType type, Object... arg) throws Throwable {
202 // ignore caller and name, but match the type:
203 return new PrintingCallSite(caller, name, type, arg);