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

1 2 3 4 5

  /external/guava/guava/src/com/google/common/collect/
FluentIterable.java 40 * {@code FluentIterable} provides a rich interface for manipulating {@code Iterable} instances in a
41 * chained fashion. A {@code FluentIterable} can be created from an {@code Iterable}, or from a set
42 * of elements. The following types of methods are provided on {@code FluentIterable}:
44 * <li>chained methods which return a new {@code FluentIterable} based in some way on the contents
46 * <li>conversion methods which copy the {@code FluentIterable}'s contents into a new collection or
50 * <li>query methods which answer questions about the {@code FluentIterable}'s contents (for example
58 * FluentIterable
65 * <p>Anything which can be done using {@code FluentIterable} could be done in a different fashion
66 * (often with {@link Iterables}), however the use of {@code FluentIterable} makes many sets of
73 public abstract class FluentIterable<E> implements Iterable<E>
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
FluentIterable.java 39 * {@code FluentIterable} provides a rich interface for manipulating {@code Iterable} instances in a
40 * chained fashion. A {@code FluentIterable} can be created from an {@code Iterable}, or from a set
41 * of elements. The following types of methods are provided on {@code FluentIterable}:
43 * <li>chained methods which return a new {@code FluentIterable} based in some way on the contents
45 * <li>conversion methods which copy the {@code FluentIterable}'s contents into a new collection or
49 * <li>query methods which answer questions about the {@code FluentIterable}'s contents (for example
57 * FluentIterable
64 * <p>Anything which can be done using {@code FluentIterable} could be done in a different fashion
65 * (often with {@link Iterables}), however the use of {@code FluentIterable} makes many sets of
72 public abstract class FluentIterable<E> implements Iterable<E>
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
FluentIterableTest.java 48 * Unit test for {@link FluentIterable}.
58 tester.testAllPublicStaticMethods(FluentIterable.class);
63 Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4))));
68 FluentIterable<Integer> iterable = FluentIterable.from(asList(1));
69 assertSame(iterable, FluentIterable.from(iterable));
74 Lists.newArrayList(FluentIterable.of(new Object[] {"1", "2", "3", "4"})));
78 assertEquals(1, FluentIterable.from(asList("a")).size());
88 assertEquals(2, FluentIterable.from(iterable).size());
98 assertEquals(5, FluentIterable.from(collection).size())
    [all...]
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.3/
haha-2.0.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.5.2/
auto-value-1.5.2.jar 
  /prebuilts/misc/common/android-support-test/espresso/
espresso_web_release_no_deps.jar 
  /prebuilts/tools/common/m2/repository/com/squareup/haha/haha/2.0.2/
haha-2.0.2.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/3.2.0-alpha16/
builder-3.2.0-alpha16.jar 
  /prebuilts/r8/
compatdx-master.jar 
compatproguard-master.jar 
d8-master.jar 
r8-master.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.0/
guava-23.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.5-jre/
guava-23.5-jre.jar 
  /prebuilts/tools/common/m2/repository/com/google/guava/guava/23.6-android/
guava-23.6-android.jar 
  /external/dagger2/lib/
auto-value-1.4.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3/
auto-value-1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/auto/value/auto-value/1.3-rc1/
auto-value-1.3-rc1.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.0/
gradle-tooling-api-2.0.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.1/
gradle-tooling-api-2.1.jar 
  /prebuilts/tools/common/m2/repository/org/gradle/gradle-tooling-api/2.2/
gradle-tooling-api-2.2.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 
  /external/annotation-tools/annotation-file-utilities/
annotation-file-utilities.jar 
  /external/annotation-tools/annotation-file-utilities/lib/
guava-20.0.jar 
  /external/error_prone/error_prone/
error_prone_core-2.2.0-with-dependencies.jar 

Completed in 336 milliseconds

1 2 3 4 5