Searched defs:iterables (Results 1 - 3 of 3) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DIterables.java51 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables
241 * Determines whether two iterables contain equal elements in the same order.
405 * Combines two iterables into a single iterable. The returned iterable has an
421 * Combines three iterables into a single iterable. The returned iterable has
439 * Combines four iterables into a single iterable. The returned iterable has
460 * Combines multiple iterables into a single iterable. The returned iterable
467 * @throws NullPointerException if any of the provided iterables is null
474 * Combines multiple iterables into a single iterable. The returned iterable
495 * Returns an iterator over the iterators of the given iterables.
498 Iterable<? extends Iterable<? extends T>> iterables) {
497 iterators( Iterable<? extends Iterable<? extends T>> iterables) argument
1105 mergeSorted( final Iterable<? extends Iterable<? extends T>> iterables, final Comparator<? super T> comparator) argument
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DIterables.java48 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables
238 * Determines whether two iterables contain equal elements in the same order.
387 * Combines two iterables into a single iterable. The returned iterable has an
403 * Combines three iterables into a single iterable. The returned iterable has
421 * Combines four iterables into a single iterable. The returned iterable has
442 * Combines multiple iterables into a single iterable. The returned iterable
449 * @throws NullPointerException if any of the provided iterables is null
456 * Combines multiple iterables into a single iterable. The returned iterable
477 * Returns an iterator over the iterators of the given iterables.
480 Iterable<? extends Iterable<? extends T>> iterables) {
479 iterators( Iterable<? extends Iterable<? extends T>> iterables) argument
1063 mergeSorted( final Iterable<? extends Iterable<? extends T>> iterables, final Comparator<? super T> comparator) argument
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DIterablesTest.java1315 Iterable<Iterable<Integer>> iterables = ImmutableList.of(iterable0);
1318 verifyMergeSorted(iterables, ImmutableList.<Integer>of());
1324 Iterable<Iterable<Integer>> iterables = ImmutableList.of(iterable0);
1327 verifyMergeSorted(iterables, iterable0);
1331 List<Iterable<Integer>> iterables = Lists.newLinkedList();
1341 iterables.add(Ordering.natural().sortedCopy(list));
1344 verifyMergeSorted(iterables, allIntegers);
1349 List<Iterable<Integer>> iterables = Lists.newLinkedList();
1358 iterables.add(Ordering.natural().sortedCopy(list));
1361 verifyMergeSorted(iterables, allInteger
1364 verifyMergeSorted(Iterable<Iterable<Integer>> iterables, Iterable<Integer> unsortedExpected) argument
[all...]

Completed in 79 milliseconds