Searched refs:invocationName (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/constant/ |
D | DynamicCallSiteDesc.java | 53 private final String invocationName; field in DynamicCallSiteDesc 75 String invocationName, in DynamicCallSiteDesc() argument 78 this.invocationName = validateMemberName(requireNonNull(invocationName), true); in DynamicCallSiteDesc() 85 if (invocationName.length() == 0) in DynamicCallSiteDesc() 86 throw new IllegalArgumentException("Illegal invocation name: " + invocationName); in DynamicCallSiteDesc() 109 String invocationName, in of() argument 112 … return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, bootstrapArgs); in of() 130 String invocationName, in of() argument 132 …return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, EMPTY_CONSTANTDESC… in of() 165 … return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, bootstrapArgs); in withArgs() [all …]
|