OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CollectionFeature
(Results
26 - 50
of
88
) sorted by null
1
2
3
4
/external/guava/guava-tests/test/com/google/common/collect/
BiMapCollectionTest.java
22
import com.google.common.collect.testing.features.
CollectionFeature
;
52
CollectionFeature
.ALLOWS_NULL_VALUES,
53
CollectionFeature
.REMOVE_OPERATIONS)
67
CollectionFeature
.ALLOWS_NULL_VALUES,
68
CollectionFeature
.REMOVE_OPERATIONS,
69
CollectionFeature
.REJECTS_DUPLICATES_AT_CREATION)
SetOperationsTest.java
25
import com.google.common.collect.testing.features.
CollectionFeature
;
53
.withFeatures(CollectionSize.ZERO,
CollectionFeature
.NONE,
54
CollectionFeature
.ALLOWS_NULL_VALUES)
65
.withFeatures(CollectionSize.ONE,
CollectionFeature
.ALLOWS_NULL_VALUES)
76
CollectionFeature
.ALLOWS_NULL_VALUES)
87
CollectionFeature
.ALLOWS_NULL_VALUES)
102
CollectionFeature
.ALLOWS_NULL_VALUES)
115
CollectionFeature
.ALLOWS_NULL_VALUES)
127
CollectionFeature
.ALLOWS_NULL_VALUES)
137
.withFeatures(CollectionSize.ZERO,
CollectionFeature
.NONE
[
all
...]
ContiguousSetNonGwtTest.java
25
import com.google.common.collect.testing.features.
CollectionFeature
;
65
CollectionFeature
.KNOWN_ORDER,
66
CollectionFeature
.ALLOWS_NULL_QUERIES,
67
CollectionFeature
.NON_STANDARD_TOSTRING,
68
CollectionFeature
.RESTRICTS_ELEMENTS,
69
CollectionFeature
.REJECTS_DUPLICATES_AT_CREATION)
Collections2Test.java
31
import com.google.common.collect.testing.features.
CollectionFeature
;
99
CollectionFeature
.GENERAL_PURPOSE,
100
CollectionFeature
.ALLOWS_NULL_VALUES,
101
CollectionFeature
.KNOWN_ORDER,
119
CollectionFeature
.GENERAL_PURPOSE,
120
CollectionFeature
.ALLOWS_NULL_VALUES,
121
CollectionFeature
.KNOWN_ORDER,
141
CollectionFeature
.GENERAL_PURPOSE,
142
CollectionFeature
.ALLOWS_NULL_VALUES,
143
CollectionFeature
.KNOWN_ORDER
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForSetsInJavaUtil.java
19
import com.google.common.collect.testing.features.
CollectionFeature
;
113
CollectionFeature
.NONE,
128
CollectionFeature
.NONE,
129
CollectionFeature
.ALLOWS_NULL_VALUES,
145
CollectionFeature
.ALLOWS_NULL_VALUES,
161
CollectionFeature
.ALLOWS_NULL_VALUES,
162
CollectionFeature
.KNOWN_ORDER,
180
CollectionFeature
.KNOWN_ORDER,
181
CollectionFeature
.RESTRICTS_ELEMENTS,
197
CollectionFeature
.KNOWN_ORDER
[
all
...]
TestsForListsInJavaUtil.java
19
import com.google.common.collect.testing.features.
CollectionFeature
;
105
CollectionFeature
.NONE,
120
CollectionFeature
.NONE,
121
CollectionFeature
.ALLOWS_NULL_VALUES,
137
CollectionFeature
.ALLOWS_NULL_VALUES,
153
CollectionFeature
.ALLOWS_NULL_VALUES,
169
CollectionFeature
.ALLOWS_NULL_VALUES,
186
CollectionFeature
.ALLOWS_NULL_VALUES,
203
CollectionFeature
.NONE,
204
CollectionFeature
.ALLOWS_NULL_VALUES
[
all
...]
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/
CollectionFeature.java
38
public enum
CollectionFeature
implements Feature<Collection> {
118
CollectionFeature
(Feature<? super Collection> ... implied) {
131
CollectionFeature
[] value() default {};
132
CollectionFeature
[] absent() default {};
ListFeature.java
43
CollectionFeature
.GENERAL_PURPOSE,
52
CollectionFeature
.REMOVE_OPERATIONS,
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionCreationTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
38
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
46
@
CollectionFeature
.Require(absent = ALLOWS_NULL_VALUES)
ListRetainAllTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_RETAIN_ALL;
25
import com.google.common.collect.testing.features.
CollectionFeature
;
38
@
CollectionFeature
.Require(SUPPORTS_RETAIN_ALL)
50
@
CollectionFeature
.Require(SUPPORTS_RETAIN_ALL)
CollectionContainsAllTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_QUERIES;
20
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
26
import com.google.common.collect.testing.features.
CollectionFeature
;
75
@
CollectionFeature
.Require(absent = ALLOWS_NULL_QUERIES)
82
@
CollectionFeature
.Require(ALLOWS_NULL_QUERIES)
87
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
CollectionIteratorTester.java
21
import static com.google.common.collect.testing.features.
CollectionFeature
.KNOWN_ORDER;
22
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_REMOVE;
28
import com.google.common.collect.testing.features.
CollectionFeature
;
59
@
CollectionFeature
.Require(KNOWN_ORDER)
71
@
CollectionFeature
.Require({KNOWN_ORDER, SUPPORTS_REMOVE})
77
@
CollectionFeature
.Require(value = KNOWN_ORDER, absent = SUPPORTS_REMOVE)
83
@
CollectionFeature
.Require(absent = KNOWN_ORDER, value = SUPPORTS_REMOVE)
89
@
CollectionFeature
.Require(absent = {KNOWN_ORDER, SUPPORTS_REMOVE})
MapGetTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_QUERIES;
25
import com.google.common.collect.testing.features.
CollectionFeature
;
50
@
CollectionFeature
.Require(ALLOWS_NULL_QUERIES)
55
@
CollectionFeature
.Require(absent = ALLOWS_NULL_QUERIES)
ListIndexOfTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.REJECTS_DUPLICATES_AT_CREATION;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
44
@
CollectionFeature
.Require(absent = REJECTS_DUPLICATES_AT_CREATION)
ListLastIndexOfTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.REJECTS_DUPLICATES_AT_CREATION;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
44
@
CollectionFeature
.Require(absent = REJECTS_DUPLICATES_AT_CREATION)
ListRemoveAllTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_REMOVE_ALL;
24
import com.google.common.collect.testing.features.
CollectionFeature
;
38
@
CollectionFeature
.Require(SUPPORTS_REMOVE_ALL)
ListRemoveTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_REMOVE;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
36
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
QueueElementTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.KNOWN_ORDER;
24
import com.google.common.collect.testing.features.
CollectionFeature
;
55
@
CollectionFeature
.Require(KNOWN_ORDER)
QueuePeekTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.KNOWN_ORDER;
24
import com.google.common.collect.testing.features.
CollectionFeature
;
50
@
CollectionFeature
.Require(KNOWN_ORDER)
SetHashCodeTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
21
import com.google.common.collect.testing.features.
CollectionFeature
;
46
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
ListSetTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
46
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
53
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
122
@
CollectionFeature
.Require(absent = ALLOWS_NULL_VALUES)
SetNavigationTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_REMOVE;
25
import com.google.common.collect.testing.features.
CollectionFeature
;
85
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
108
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
119
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
139
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
151
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
159
@
CollectionFeature
.Require(absent = SUPPORTS_REMOVE)
204
@
CollectionFeature
.Require(SUPPORTS_REMOVE)
212
@
CollectionFeature
.Require(absent = SUPPORTS_REMOVE
[
all
...]
SetEqualsTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
55
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
ListAddAtIndexTester.java
19
import static com.google.common.collect.testing.features.
CollectionFeature
.ALLOWS_NULL_VALUES;
24
import com.google.common.collect.testing.features.
CollectionFeature
;
95
@
CollectionFeature
.Require(ALLOWS_NULL_VALUES)
102
@
CollectionFeature
.Require(absent = ALLOWS_NULL_VALUES)
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
MultisetIteratorTester.java
17
import static com.google.common.collect.testing.features.
CollectionFeature
.KNOWN_ORDER;
18
import static com.google.common.collect.testing.features.
CollectionFeature
.SUPPORTS_REMOVE;
23
import com.google.common.collect.testing.features.
CollectionFeature
;
39
@
CollectionFeature
.Require({SUPPORTS_REMOVE, KNOWN_ORDER})
53
@
CollectionFeature
.Require(value = SUPPORTS_REMOVE, absent = KNOWN_ORDER)
66
@
CollectionFeature
.Require(value = KNOWN_ORDER, absent = SUPPORTS_REMOVE)
80
@
CollectionFeature
.Require(absent = {SUPPORTS_REMOVE, KNOWN_ORDER})
Completed in 95 milliseconds
1
2
3
4