Home | History | Annotate | Download | only in collect

Lines Matching defs:iterable

358               ImmutableList.copyOf((Iterable<String>) misleading));
363 private static class CountingIterable implements Iterable<String> {
373 CountingIterable iterable = new CountingIterable();
374 List<String> list = ImmutableList.copyOf(iterable);
379 CountingIterable iterable = new CountingIterable();
380 ImmutableList.copyOf(iterable);
381 assertEquals(1, iterable.count);
406 Iterable<ListFrobber> actionsToPerformConcurrently,
412 Iterable<Integer> iterableToCopy = wrap == WrapWithIterable.WRAP
554 final Iterable<ListFrobber> actionsToPerformConcurrently) {
742 builder.addAll((Iterable<String>) null);
769 Iterable<String> iterableWithNulls = MinimalIterable.of("a", null, "b");