OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Iterables
(Results
126 - 150
of
248
) sorted by null
1
2
3
4
5
6
7
8
9
10
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterables.java
45
* <p><i>Performance notes:</i> Unless otherwise noted, all of the
iterables
50
* "http://code.google.com/p/guava-libraries/wiki/CollectionUtilitiesExplained#
Iterables
">
51
* {@code
Iterables
}</a>.
58
public final class
Iterables
{
59
private
Iterables
() {}
249
* Determines whether two
iterables
contain equal elements in the same order.
270
* Arrays}{@code .toString(
Iterables
.toArray(iterable))}). Note that for
371
* {@code
Iterables
.concat(Collections.nCopies(n, iterable))}
393
* as {@code
Iterables
.cycle(Lists.newArrayList(elements))}. The iterator's
402
* {@code
Iterables
.concat(Collections.nCopies(n, Arrays.asList(elements)))
[
all
...]
/external/guava/guava-tests/test/com/google/common/cache/
PopulatedCachesTest.java
29
import com.google.common.collect.
Iterables
;
275
Entry<Object, Object> entry =
Iterables
.getOnlyElement(cache.asMap().entrySet());
298
return
Iterables
.transform(factory.buildAllPermutations(),
377
assertEquals(size,
Iterables
.size(collection));
/external/guava/guava-tests/test/com/google/common/collect/
ForwardingTestCase.java
96
Iterable<String> parameterNames =
Iterables
.transform(
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
FactoryModuleBuilderTest.java
23
import com.google.common.collect.
Iterables
;
403
Iterables
.getOnlyElement(messages).getMessage());
597
Iterables
.getOnlyElement(ce.getErrorMessages()).getMessage());
632
Iterables
.getOnlyElement(ce.getErrorMessages()).getMessage());
/external/robolectric-shadows/robolectric/src/main/java/org/robolectric/android/internal/
LocalUiController.java
5
import static com.google.common.collect.
Iterables
.getOnlyElement;
/external/turbine/java/com/google/turbine/binder/lookup/
MemberImportIndex.java
19
import static com.google.common.collect.
Iterables
.getLast;
/external/turbine/java/com/google/turbine/diag/
TurbineDiagnostic.java
21
import static com.google.common.collect.
Iterables
.getOnlyElement;
/external/turbine/javatests/com/google/turbine/binder/lookup/
TopLevelIndexTest.java
19
import static com.google.common.collect.
Iterables
.getOnlyElement;
/cts/libs/vogar-expect/src/vogar/
ExpectationStore.java
22
import com.google.common.collect.
Iterables
;
276
Iterable<Expectation> allExpectations =
Iterables
.concat(outcomes.values(), failures.values());
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java
33
import com.google.common.collect.
Iterables
;
77
import static com.google.common.collect.
Iterables
.all;
78
import static com.google.common.collect.
Iterables
.any;
79
import static com.google.common.collect.
Iterables
.getOnlyElement;
80
import static com.google.common.collect.
Iterables
.indexOf;
81
import static com.google.common.collect.
Iterables
.skip;
[
all
...]
ConfigurationAnnotations.java
25
import com.google.common.collect.
Iterables
;
167
Iterables
.addAll(moduleQueue, seedModules);
MapKeys.java
49
import static com.google.common.collect.
Iterables
.getOnlyElement;
50
import static com.google.common.collect.
Iterables
.transform;
SourceFiles.java
23
import com.google.common.collect.
Iterables
;
149
String name =
Iterables
.getOnlyElement(dependencyNames);
/external/guava/guava/src/com/google/common/collect/
ImmutableTable.java
94
=
Iterables
.getOnlyElement(table.cellSet());
242
Iterables
.getOnlyElement(cells));
/external/guava/guava/src/com/google/common/util/concurrent/
Striped.java
25
import com.google.common.collect.
Iterables
;
146
final Object[] array =
Iterables
.toArray(keys, Object.class);
/external/guava/guava-testlib/src/com/google/common/testing/
AbstractPackageSanityTests.java
29
import com.google.common.collect.
Iterables
;
319
NEXT_CANDIDATE: for (Class<?> candidate :
Iterables
.filter(candidateClasses, classFilter)) {
/external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java
23
import com.google.common.collect.
Iterables
;
502
assertSame(fnfe,
Iterables
.getOnlyElement(Throwables.getCausalChain(fnfe)));
/external/guice/core/src/com/google/inject/util/
Modules.java
21
import com.google.common.collect.
Iterables
;
179
Element element =
Iterables
.getOnlyElement(baseElements);
/external/guice/core/test/com/google/inject/
ParentInjectorTest.java
25
import com.google.common.collect.
Iterables
;
82
Iterables
.getOnlyElement(ce.getErrorMessages()).getMessage(),
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/stats/
StatsTestUtil.java
22
import com.google.common.collect.
Iterables
;
214
while (!truncated.isEmpty() &&
Iterables
.getLast(truncated) == 0) {
/external/robolectric-shadows/processor/src/main/java/org/robolectric/annotation/processing/
Helpers.java
7
import com.google.common.collect.
Iterables
;
121
return newArrayList(
Iterables
.filter(typeParam.getBounds(), notObject));
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowLogTest.java
12
import com.google.common.collect.
Iterables
;
247
LogItem lastLog =
Iterables
.getLast(ShadowLog.getLogs());
/external/smali/util/src/main/java/org/jf/util/jcommander/
HelpFormatter.java
39
import com.google.common.collect.
Iterables
;
137
JCommander leafJc =
Iterables
.getLast(commandHierarchy);
/external/vogar/src/vogar/
ExpectationStore.java
21
import com.google.common.collect.
Iterables
;
263
=
Iterables
.concat(outcomes.values(), failures.values());
/external/guava/guava-tests/test/com/google/common/util/concurrent/
AbstractServiceTest.java
24
import com.google.common.collect.
Iterables
;
541
assertEquals(State.TERMINATED,
Iterables
.getOnlyElement(listener.getStateHistory()));
844
assertEquals(State.STARTING,
Iterables
.getOnlyElement(stateHistory));
851
assertEquals(from,
Iterables
.getLast(stateHistory));
867
assertEquals(from,
Iterables
.getLast(stateHistory, State.NEW));
884
assertEquals(from,
Iterables
.getLast(stateHistory));
Completed in 1649 milliseconds
1
2
3
4
5
6
7
8
9
10