Home | History | Annotate | Download | only in protobuf

Lines Matching defs:list

10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
36 import java.util.List;
53 private final List<E> list;
59 private ProtobufArrayList(List<E> list) {
60 this.list = list;
68 List<E> newList = new ArrayList<E>(capacity);
69 newList.addAll(list);
76 list.add(index, element);
82 return list.get(index);
88 E toReturn = list.remove(index);
96 E toReturn = list.set(index, element);
103 return list.size();