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

1 2 3 45 6 7 8 910

  /external/turbine/javatests/com/google/turbine/binder/
JimageClassBinderTest.java 20 import static com.google.common.collect.Iterables.getOnlyElement;
ClassPathBinderTest.java 19 import static com.google.common.collect.Iterables.getLast;
20 import static com.google.common.collect.Iterables.getOnlyElement;
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
ConsoleOutput.java 31 import com.google.common.collect.Iterables;
122 String unit = Iterables.getOnlyElement(units);
WorkerProcess.java 29 import com.google.common.collect.Iterables;
171 Iterables.addAll(args, instrumentJvmOptions);
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
InjectBindingRegistry.java 24 import com.google.common.collect.Iterables;
224 Iterables.getOnlyElement(injectConstructors), Optional.of(key.type()));
ProvidesMethodValidator.java 19 import com.google.common.collect.Iterables;
148 Iterables.getOnlyElement(declaredReturnType.getTypeArguments()));
AbstractComponentWriter.java 26 import com.google.common.collect.Iterables;
86 import static com.google.common.collect.Iterables.any;
87 import static com.google.common.collect.Iterables.getOnlyElement;
372 Iterables.getOnlyElement(specMethod.getParameters()).getSimpleName().toString();
613 VariableElement parameter = Iterables.getOnlyElement(parameters);
617 Iterables.getOnlyElement(requestType.getParameterTypes())),
    [all...]
Key.java 25 import com.google.common.collect.Iterables;
200 keyType = Iterables.getOnlyElement(MoreTypes.asDeclared(returnType).getTypeArguments());
241 Iterables.getOnlyElement(MoreTypes.asDeclared(returnType).getTypeArguments());
  /external/guava/guava/src/com/google/common/collect/
ForwardingNavigableMap.java 184 return Iterables.getFirst(entrySet(), null);
212 return Iterables.getFirst(descendingMap().entrySet(), null);
Sets.java 146 Iterables.addAll(set, iterable);
274 Iterables.addAll(set, elements);
328 Iterables.addAll(set, elements);
365 Iterables.addAll(set, elements);
736 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
741 * with equals. (See {@link Iterables#filter(Iterable, Class)} for related
798 * {@code Iterables.filter(unfiltered, predicate)} and use the copy.
803 * equals. (See {@link Iterables#filter(Iterable, Class)} for related
    [all...]
ImmutableSortedSet.java 356 E[] array = (E[]) Iterables.toArray(elements);
719 return Iterables.getFirst(tailSet(e, true), null);
728 return Iterables.getFirst(tailSet(e, false), null);
Iterables.java 47 * <p><i>Performance notes:</i> Unless otherwise noted, all of the iterables
52 * "http://code.google.com/p/guava-libraries/wiki/CollectionUtilitiesExplained#Iterables">
53 * {@code Iterables}</a>.
60 public final class Iterables {
61 private Iterables() {}
251 * Determines whether two iterables contain equal elements in the same order.
272 * Arrays}{@code .toString(Iterables.toArray(iterable))}). Note that for
388 * {@code Iterables.concat(Collections.nCopies(n, iterable))}
410 * as {@code Iterables.cycle(Lists.newArrayList(elements))}. The iterator's
419 * {@code Iterables.concat(Collections.nCopies(n, Arrays.asList(elements)))
    [all...]
TreeTraverser.java 211 Iterables.addAll(queue, children(result));
  /external/guava/guava-tests/test/com/google/common/cache/
CacheReferencesTest.java 25 import com.google.common.collect.Iterables;
54 return Iterables.transform(factory.buildAllPermutations(),
  /external/guava/guava-tests/test/com/google/common/hash/
AbstractStreamingHasherTest.java 21 import com.google.common.collect.Iterables;
159 Iterables.concat(sinks, Collections.singleton(controlSink));
  /external/guice/core/test/com/google/inject/
Asserts.java 31 import com.google.common.collect.Iterables;
60 Iterables.transform(
  /external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
ExtensionSpiTest.java 23 import com.google.common.collect.Iterables;
76 Iterables.getOnlyElement(visitor.assistedInjectBindings).getAssistedMethods());
  /external/turbine/java/com/google/turbine/binder/
CompUnitPreprocessor.java 23 import com.google.common.collect.Iterables;
109 decls = Iterables.concat(decls, ImmutableList.of(packageInfoTree(unit.pkg().get())));
  /external/turbine/java/com/google/turbine/type/
Type.java 22 import com.google.common.collect.Iterables;
104 return Iterables.getLast(classes()).sym();
  /external/vogar/src/vogar/android/
HostRuntime.java 19 import com.google.common.collect.Iterables;
120 Iterables.addAll(vmCommand, run.invokeWith());
  /external/cldr/tools/java/org/unicode/cldr/draft/keyboard/windows/
KlcParser.java 30 import com.google.common.collect.Iterables;
229 for (String output : Iterables.skip(components, 3)) {
278 for (String output : Iterables.skip(nextLineComponents, 3)) {
283 ModifierKeyCombination combination = Iterables.getOnlyElement(indexToModifierKeyCombinations.get(modifierIndex));
285 ImmutableSet.copyOf(Iterables.concat(
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 270 Iterable<Field> fields = Iterables.limit(sortedStaticFields, lastIndex + 1);
271 return Iterables.transform(fields, GET_INITIAL_VALUE).iterator();
356 boolean hasParameterAnnotations = Iterables.any(parameters, HAS_PARAMETER_ANNOTATIONS);
361 return Iterables.transform(parameters, PARAMETER_ANNOTATIONS).iterator();
381 return Iterables.transform(method.getParameters(), new Function<MethodParameter, CharSequence>() {
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ImmutableTableTest.java 172 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
173 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
174 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableTableTest.java 173 assertTrue(Iterables.elementsEqual(original.cellSet(), copy.cellSet()));
174 assertTrue(Iterables.elementsEqual(original.rowKeySet(), copy.rowKeySet()));
175 assertTrue(Iterables.elementsEqual(original.values(), copy.values()));
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedClassDef.java 36 import com.google.common.collect.Iterables;
271 return Iterables.concat(getStaticFields(), getInstanceFields());
398 return Iterables.concat(getDirectMethods(), getVirtualMethods());

Completed in 398 milliseconds

1 2 3 45 6 7 8 910