Home | History | Annotate | Download | only in cst

Lines Matching defs:list

43         List list = new List(3 + optionalArguments.size());
44 list.set(0, bootstrapHandle);
45 list.set(1, nat.getName());
46 list.set(2, new CstProtoRef(Prototype.fromDescriptor(nat.getDescriptor().getString())));
49 list.set(i + 3, optionalArguments.get(i));
52 list.setImmutable();
53 return new CstCallSite(list);
59 * @param list {@code non-null;} the actual list of contents
61 private CstCallSite(List list) {
62 super(list);