HomeSort by relevance Sort by last modified time
    Searched defs:Iterables (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
LinkedHashMultiset.java 70 Iterables.addAll(multiset, elements);
EnumMultiset.java 50 Iterables.addAll(multiset, elements);
HashMultiset.java 63 Iterables.addAll(multiset, elements);
Iterables.java 48 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables
57 public final class Iterables {
58 private Iterables() {}
238 * Determines whether two iterables contain equal elements in the same order.
349 * {@code Iterables.concat(Collections.nCopies(n, iterable))}
371 * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
380 * {@code Iterables.concat(Collections.nCopies(n, Arrays.asList(elements)))}
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 ha
    [all...]
Sets.java 136 Iterables.addAll(set, iterable);
727 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
732 * with equals. (See {@link Iterables#filter(Iterable, Class)} for related
789 * {@code Iterables.filter(unfiltered, predicate)} and use the copy.
794 * equals. (See {@link Iterables#filter(Iterable, Class)} for related
    [all...]
TreeMultiset.java 109 Iterables.addAll(multiset, elements);
  /external/guava/guava/src/com/google/common/collect/
Queues.java 81 Iterables.addAll(queue, elements);
120 Iterables.addAll(queue, elements);
149 Iterables.addAll(queue, elements);
175 Iterables.addAll(queue, elements);
EnumMultiset.java 54 Iterables.addAll(multiset, elements);
HashMultiset.java 67 Iterables.addAll(multiset, elements);
LinkedHashMultiset.java 74 Iterables.addAll(multiset, elements);
ConcurrentHashMultiset.java 94 Iterables.addAll(multiset, elements);
546 // Not Iterables.addAll(list, this), because that'll forward right back here.
Iterables.java 51 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables
60 public final class Iterables {
61 private Iterables() {}
241 * Determines whether two iterables contain equal elements in the same order.
367 * {@code Iterables.concat(Collections.nCopies(n, iterable))}
389 * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
398 * {@code Iterables.concat(Collections.nCopies(n, Arrays.asList(elements)))}
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 ha
    [all...]
SortedIterables.java 93 E[] array = (E[]) Iterables.toArray(elements);
183 Iterables.addAll(multiset, elements);
Collections2.java 67 * it may be faster to copy {@code Iterables.filter(unfiltered, predicate)}
73 * with equals. (See {@link Iterables#filter(Iterable, Class)} for related
76 // TODO(kevinb): how can we omit that Iterables link when building gwt
134 Iterables.removeIf(unfiltered, predicate);
204 return Iterables.removeIf(unfiltered, combinedPredicate);
217 return Iterables.removeIf(unfiltered, combinedPredicate);
258 * {@link Iterables#transform}.
321 sb, Iterables.transform(collection, new Function<Object, Object>() {
Sets.java 139 Iterables.addAll(set, iterable);
739 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
744 * with equals. (See {@link Iterables#filter(Iterable, Class)} for related
801 * {@code Iterables.filter(unfiltered, predicate)} and use the copy.
806 * equals. (See {@link Iterables#filter(Iterable, Class)} for related
    [all...]
TreeMultiset.java 113 Iterables.addAll(multiset, elements);
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableTableTest.java 169 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
170 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
171 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
ListsTest.java 727 assertTrue(Iterables.elementsEqual(
840 // Changes after are too (unlike Iterables.partition)
ImmutableSortedSetTest.java 317 assertTrue(Iterables.elementsEqual(set, copy));
425 assertTrue(Iterables.elementsEqual(set, copy));
654 assertTrue(Iterables.elementsEqual(set, copy));
708 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
714 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
728 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
742 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_BACKWARD, set));
    [all...]
  /external/guava/guava-tests/test/com/google/common/math/
MathTesting.java 35 import com.google.common.collect.Iterables;
126 Iterables.concat(Iterables.transform(POSITIVE_INTEGER_CANDIDATES, NEGATE_INT),
129 Iterables.concat(POSITIVE_INTEGER_CANDIDATES, NEGATIVE_INTEGER_CANDIDATES);
130 ALL_INTEGER_CANDIDATES = Iterables.concat(NONZERO_INTEGER_CANDIDATES, ImmutableList.of(0));
149 longValues.addAll(Iterables.transform(POSITIVE_INTEGER_CANDIDATES, TO_LONG));
160 Iterables.concat(Iterables.transform(POSITIVE_LONG_CANDIDATES, NEGATE_LONG),
162 NONZERO_LONG_CANDIDATES = Iterables.concat(POSITIVE_LONG_CANDIDATES, NEGATIVE_LONG_CANDIDATES);
163 ALL_LONG_CANDIDATES = Iterables.concat(NONZERO_LONG_CANDIDATES, ImmutableList.of(0L))
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
ClassProto.java 37 import com.google.common.collect.Iterables;
190 * @return An iterables of ClassDefs representing the directly or transitively implemented interfaces
196 Iterables.filter(getInterfaces().values(), Predicates.notNull());
318 Iterables.addAll(thisChain, TypeProtoUtils.getSuperclassChain(this));
321 Iterables.addAll(otherChain, TypeProtoUtils.getSuperclassChain(other));
  /libcore/benchmarks/libs/
caliper.jar 
  /external/owasp/sanitizer/distrib/lib/
guava.jar 
  /external/owasp/sanitizer/lib/guava-libraries/
guava.jar 
  /packages/services/Telecomm/libs/
guava.jar 

Completed in 300 milliseconds

1 2 3