Home | History | Annotate | Download | only in collect

Lines Matching refs:forward

138   private List<String> forward;
175 forward = new ForwardingList<String>() {
183 forward.add("asdf");
188 forward.add(0, "asdf");
193 forward.addAll(EMPTY_LIST);
198 forward.addAll(0, Collections.singleton("asdf"));
203 forward.clear();
208 forward.contains(null);
213 forward.containsAll(EMPTY_LIST);
218 forward.get(0);
223 forward.indexOf(null);
228 forward.isEmpty();
233 forward.iterator();
238 forward.lastIndexOf("asdf");
243 forward.listIterator();
248 forward.listIterator(0);
253 forward.remove(0);
258 forward.remove(null);
263 forward.removeAll(EMPTY_LIST);
268 forward.retainAll(EMPTY_LIST);
273 forward.set(0, "asdf");
278 forward.size();
283 forward.subList(0, 1);
288 forward.toArray();
293 forward.toArray(new String[0]);
298 forward.equals("asdf");
303 forward.hashCode();
308 assertFalse(forward instanceof RandomAccess);
312 forward.toString();