Searched refs:bootstrapArgs (Results 1 – 3 of 3) sorted by relevance
/libcore/ojluni/src/main/java/java/lang/constant/ |
D | DynamicConstantDesc.java | 63 private final ConstantDesc[] bootstrapArgs; field in DynamicConstantDesc 88 ConstantDesc... bootstrapArgs) { in DynamicConstantDesc() argument 92 this.bootstrapArgs = requireNonNull(bootstrapArgs).clone(); in DynamicConstantDesc() 136 ConstantDesc[] bootstrapArgs) { in ofCanonical() argument 137 … return DynamicConstantDesc.<T>ofNamed(bootstrapMethod, constantName, constantType, bootstrapArgs) in ofCanonical() 165 ConstantDesc... bootstrapArgs) { in ofNamed() argument 166 …urn new AnonymousDynamicConstantDesc<>(bootstrapMethod, constantName, constantType, bootstrapArgs); in ofNamed() 185 ConstantDesc... bootstrapArgs) { in of() argument 186 …Named(bootstrapMethod, DEFAULT_NAME, bootstrapMethod.invocationType().returnType(), bootstrapArgs); in of() 239 public ConstantDesc[] bootstrapArgs() { in bootstrapArgs() method in DynamicConstantDesc [all …]
|
D | DynamicCallSiteDesc.java | 52 private final ConstantDesc[] bootstrapArgs; field in DynamicCallSiteDesc 77 ConstantDesc[] bootstrapArgs) { in DynamicCallSiteDesc() argument 81 this.bootstrapArgs = requireNonNull(bootstrapArgs.clone()); in DynamicCallSiteDesc() 82 for (int i = 0; i < this.bootstrapArgs.length; i++) { in DynamicCallSiteDesc() 83 requireNonNull(this.bootstrapArgs[i]); in DynamicCallSiteDesc() 111 ConstantDesc... bootstrapArgs) { in of() argument 112 … return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, bootstrapArgs); in of() 164 public DynamicCallSiteDesc withArgs(ConstantDesc... bootstrapArgs) { in withArgs() argument 165 … return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, bootstrapArgs); in withArgs() 186 … return new DynamicCallSiteDesc(bootstrapMethod, invocationName, invocationType, bootstrapArgs); in withNameAndType() [all …]
|
/libcore/ojluni/src/test/java/lang/constant/ |
D | NameValidationTest.java | 79 ConstantDesc... bootstrapArgs) { in memberNamesHelper() argument 80 if (bootstrapArgs == null) { in memberNamesHelper() 83 DynamicConstantDesc.ofNamed(bootstrapMethod, constantName, constantType, bootstrapArgs); in memberNamesHelper()
|