HomeSort by relevance Sort by last modified time
    Searched refs:Iterables (Results 151 - 175 of 248) sorted by null

1 2 3 4 5 67 8 910

  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSortedSetTest.java 418 assertTrue(Iterables.elementsEqual(set, copy));
526 assertTrue(Iterables.elementsEqual(set, copy));
756 assertTrue(Iterables.elementsEqual(set, copy));
810 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
816 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
830 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
    [all...]
  /external/guice/core/test/com/google/inject/
ProvisionListenerTest.java 26 import com.google.common.collect.Iterables;
172 expectedMsg = Iterables.getOnlyElement(expected.getErrorMessages()).getMessage();
192 Iterables.getOnlyElement(((ProvisionException) listener.capture.get()).getErrorMessages())
221 expectedMsg = Iterables.getOnlyElement(expected.getErrorMessages()).getMessage();
241 Iterables.getOnlyElement(((ProvisionException) listener.capture.get()).getErrorMessages())
BinderTest.java 24 import com.google.common.collect.Iterables;
514 assertSame(message, Iterables.getOnlyElement(expected.getErrorMessages()));
531 LogRecord logRecord = Iterables.getOnlyElement(this.logRecords);
MethodInterceptionTest.java 23 import com.google.common.collect.Iterables;
172 Iterables.getOnlyElement(ce.getErrorMessages()).getMessage().toString());
TypeConversionTest.java 24 import com.google.common.collect.Iterables;
315 Throwable cause = Iterables.getOnlyElement(expected.getErrorMessages()).getCause();
  /external/cldr/tools/java/org/unicode/cldr/util/
RegexLogger.java 17 import com.google.common.collect.Iterables;
465 List<String> returned = new ArrayList<>(Iterables.size(input));
499 List<String> returned = new ArrayList<>(Iterables.size(input));
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraph.java 29 import com.google.common.collect.Iterables;
61 import static com.google.common.collect.Iterables.any;
212 Iterables.filter(
ComponentValidator.java 24 import com.google.common.collect.Iterables;
195 TypeMirror onlyParameter = Iterables.getOnlyElement(parameterTypes);
DependencyRequestFormatter.java 34 import static com.google.common.collect.Iterables.getOnlyElement;
  /external/guava/guava/src/com/google/common/reflect/
Types.java 21 import static com.google.common.collect.Iterables.transform;
30 import com.google.common.collect.Iterables;
508 return Iterables.filter(
  /external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
RobolectricModel.java 8 import com.google.common.collect.Iterables;
277 return Iterables.filter(shadowTypes.values(),
283 Iterables.filter(shadowTypes.values(), ShadowInfo::hasShadowPicker)
  /external/guava/guava/src/com/google/common/collect/
Ordering.java 415 * Returns a new ordering which sorts iterables by comparing corresponding
816 E[] array = (E[]) Iterables.toArray(elements);
842 E[] array = (E[]) Iterables.toArray(elements);
    [all...]
  /external/guava/guava-tests/test/com/google/common/cache/
EmptyCachesTest.java 27 import com.google.common.collect.Iterables;
353 return Iterables.transform(factory.buildAllPermutations(),
  /external/guava/guava-tests/test/com/google/common/io/
ByteSourceTest.java 31 import com.google.common.collect.Iterables;
304 Iterable<ByteSource> cycle = Iterables.cycle(ImmutableList.of(source));
CharSourceTest.java 26 import com.google.common.collect.Iterables;
226 Iterable<CharSource> cycle = Iterables.cycle(ImmutableList.of(source));
CloserTest.java 25 import com.google.common.collect.Iterables;
56 String secondPart = Iterables.get(Splitter.on('.').split(javaVersion), 1);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTelephonyManager.java 32 import com.google.common.collect.Iterables;
404 return Iterables.filter(
  /external/grpc-grpc-java/core/src/test/java/io/grpc/util/
MutableHandlerRegistryTest.java 19 import static com.google.common.collect.Iterables.getOnlyElement;
UtilServerInterceptorsTest.java 19 import static com.google.common.collect.Iterables.getOnlyElement;
  /external/grpc-grpc-java/netty/src/test/java/io/grpc/netty/
NettyServerTest.java 19 import static com.google.common.collect.Iterables.getOnlyElement;
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 142 Iterables.addAll(set, iterable);
270 Iterables.addAll(set, elements);
324 Iterables.addAll(set, elements);
361 Iterables.addAll(set, elements);
700 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
705 * with equals. (See {@link Iterables#filter(Iterable, Class)} for related
762 * {@code Iterables.filter(unfiltered, predicate)} and use the copy.
767 * equals. (See {@link Iterables#filter(Iterable, Class)} for related
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSetTest.java 641 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
647 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
661 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_FORWARD, set));
675 assertTrue(Iterables.elementsEqual(LegacyComparable.VALUES_BACKWARD, set));
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
StripedTest.java 19 import static com.google.common.collect.Iterables.concat;
  /external/guice/core/test/com/google/inject/spi/
ProviderMethodsTest.java 24 import com.google.common.collect.Iterables;
1016 Dependency<?> fooDependency = Iterables.getOnlyElement(fooPoint.getDependencies());
1040 (ProviderInstanceBinding) Iterables.getOnlyElement(Elements.getElements(module));
    [all...]
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
FactoryProvider2.java 20 import static com.google.common.collect.Iterables.getOnlyElement;
28 import com.google.common.collect.Iterables;
488 Iterables.getOnlyElement(new Errors().keyNotFullySpecified(typeLiteral).getMessages());
489 return msg.getMessage().equals(Iterables.getOnlyElement(messages).getMessage());
    [all...]

Completed in 2016 milliseconds

1 2 3 4 5 67 8 910