OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UNMODIFIABLE
(Results
1 - 11
of
11
) sorted by null
/external/guava/guava-testlib/src/com/google/common/collect/testing/
IteratorFeature.java
53
public static final Set<IteratorFeature>
UNMODIFIABLE
=
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionIteratorTester.java
20
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
79
runIteratorTest(
UNMODIFIABLE
, IteratorTester.KnownOrder.KNOWN_ORDER,
91
runIteratorTest(
UNMODIFIABLE
, IteratorTester.KnownOrder.UNKNOWN_ORDER,
131
* classes with
unmodifiable
iterators can suppress it.
ListListIteratorTester.java
20
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
55
runListIteratorTest(
UNMODIFIABLE
);
/external/guava/guava-tests/test/com/google/common/collect/
AbstractLinkedIteratorTest.java
19
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
37
new IteratorTester<Integer>(3,
UNMODIFIABLE
, ImmutableList.of(1, 2),
PeekingIteratorTest.java
21
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
80
// Check with
unmodifiable
lists
81
new IteratorTester<T>(list.size() * 2 + 2,
UNMODIFIABLE
, list,
AbstractImmutableSetTest.java
19
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
257
new IteratorTester<String>(5,
UNMODIFIABLE
, Collections.singleton("a"),
267
new IteratorTester<String>(5,
UNMODIFIABLE
, asList("a", "b", "c"),
IteratorsTest.java
24
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
279
new IteratorTester<Integer>(5,
UNMODIFIABLE
, asList(2, 4),
596
new IteratorTester<Integer>(5,
UNMODIFIABLE
, asList(1, 2, 1, 2, 1,
673
new IteratorTester<Integer>(5,
UNMODIFIABLE
, asList(1, 2),
864
IteratorFeature.
UNMODIFIABLE
,
937
IteratorFeature.
UNMODIFIABLE
,
[
all
...]
ListsTest.java
20
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
428
new IteratorTester<String>(5,
UNMODIFIABLE
,
456
new IteratorTester<String>(3,
UNMODIFIABLE
, singletonList("foo"),
469
new IteratorTester<String>(5,
UNMODIFIABLE
, asList("foo", "bar",
489
new IteratorTester<String>(5,
UNMODIFIABLE
, asList("foo", "bar"),
SetsTest.java
23
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
770
new IteratorTester<Set<Integer>>(6,
UNMODIFIABLE
, expected, KNOWN_ORDER) {
787
new IteratorTester<Set<Integer>>(4,
UNMODIFIABLE
, expected, KNOWN_ORDER) {
[
all
...]
IterablesTest.java
23
import static com.google.common.collect.testing.IteratorFeature.
UNMODIFIABLE
;
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetIteratorTester.java
68
new IteratorTester<E>(4, IteratorFeature.
UNMODIFIABLE
, getSubjectGenerator().order(
82
new IteratorTester<E>(4, IteratorFeature.
UNMODIFIABLE
, Arrays.asList(samples.e0, samples.e1,
Completed in 340 milliseconds