Home | History | Annotate | Download | only in file

Lines Matching refs:items

63     /** {@code non-null;} the items in this part */
64 private final ArrayList<OffsettedItem> items;
66 /** {@code non-null;} items that have been explicitly interned */
69 /** {@code non-null;} how to sort the items */
86 * @param sort how the items should be sorted in the final output
92 this.items = new ArrayList<OffsettedItem>(100);
100 public Collection<? extends Item> items() {
101 return items;
119 * Gets the size of this instance, in items.
124 return items.size();
164 * same item to more than one instance, nor to add the same items
182 items.add(item);
226 * Writes an index of contents of the items in this instance of the
241 for (OffsettedItem item : items) {
267 * It's okay for new items to be added as a result of an
273 int sz = items.size();
279 OffsettedItem one = items.get(i);
286 * Places all the items in this instance at particular offsets. This
298 Collections.sort(items);
302 Collections.sort(items, TYPE_SORTER);
307 int sz = items.size();
310 OffsettedItem one = items.get(i);
337 for (OffsettedItem one : items) {