HomeSort by relevance Sort by last modified time
    Searched refs:MapFeature (Results 1 - 20 of 20) sorted by null

  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
MapRemoveTester.java 20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
22 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
27 import com.google.common.collect.testing.features.MapFeature;
41 @MapFeature.Require(SUPPORTS_REMOVE)
52 @MapFeature.Require(SUPPORTS_REMOVE)
59 @MapFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_KEYS})
72 @MapFeature.Require(absent = SUPPORTS_REMOVE)
85 @MapFeature.Require(absent = SUPPORTS_REMOVE)
97 @MapFeature.Require
    [all...]
MapPutAllTester.java 20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
22 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT_ALL;
28 import com.google.common.collect.testing.features.MapFeature;
57 @MapFeature.Require(SUPPORTS_PUT_ALL)
63 @MapFeature.Require(absent = SUPPORTS_PUT_ALL)
72 @MapFeature.Require(SUPPORTS_PUT_ALL)
78 @MapFeature.Require(absent = SUPPORTS_PUT_ALL)
89 @MapFeature.Require(SUPPORTS_PUT_ALL)
96 @MapFeature.Require(absent = SUPPORTS_PUT_ALL
    [all...]
MapContainsValueTester.java 20 import static com.google.common.collect.testing.features.MapFeature.*;
25 import com.google.common.collect.testing.features.MapFeature;
49 @MapFeature.Require(ALLOWS_NULL_QUERIES)
55 @MapFeature.Require(absent = ALLOWS_NULL_QUERIES)
61 @MapFeature.Require(ALLOWS_NULL_VALUES)
69 @MapFeature.Require(ALLOWS_NULL_VALUES)
MapContainsKeyTester.java 20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
26 import com.google.common.collect.testing.features.MapFeature;
49 @MapFeature.Require(ALLOWS_NULL_QUERIES)
55 @MapFeature.Require(absent = ALLOWS_NULL_QUERIES)
61 @MapFeature.Require(ALLOWS_NULL_KEYS)
69 @MapFeature.Require(ALLOWS_NULL_KEYS)
MapCreationTester.java 21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
22 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
23 import static com.google.common.collect.testing.features.MapFeature.REJECTS_DUPLICATES_AT_CREATION;
27 import com.google.common.collect.testing.features.MapFeature;
44 @MapFeature.Require(ALLOWS_NULL_KEYS)
51 @MapFeature.Require(absent = ALLOWS_NULL_KEYS)
61 @MapFeature.Require(ALLOWS_NULL_VALUES)
68 @MapFeature.Require(absent = ALLOWS_NULL_VALUES)
78 @MapFeature.Require({ALLOWS_NULL_KEYS, ALLOWS_NULL_VALUES})
87 @MapFeature.Require(value = ALLOWS_NULL_KEYS
    [all...]
MapClearTester.java 20 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_CLEAR;
24 import com.google.common.collect.testing.features.MapFeature;
37 @MapFeature.Require(SUPPORTS_CLEAR)
44 @MapFeature.Require(absent = SUPPORTS_CLEAR)
56 @MapFeature.Require(absent = SUPPORTS_CLEAR)
MapPutTester.java 20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
22 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_PUT;
26 import com.google.common.collect.testing.features.MapFeature;
56 @MapFeature.Require(SUPPORTS_PUT)
62 @MapFeature.Require(absent = SUPPORTS_PUT)
73 @MapFeature.Require(absent = SUPPORTS_PUT)
84 @MapFeature.Require(absent = SUPPORTS_PUT)
95 @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_KEYS})
101 @MapFeature.Require({SUPPORTS_PUT, ALLOWS_NULL_KEYS}
    [all...]
MapHashCodeTester.java 19 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
24 import com.google.common.collect.testing.features.MapFeature;
49 @MapFeature.Require(ALLOWS_NULL_KEYS)
56 @MapFeature.Require(ALLOWS_NULL_VALUES)
MapGetTester.java 21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
27 import com.google.common.collect.testing.features.MapFeature;
63 @MapFeature.Require(ALLOWS_NULL_KEYS)
70 @MapFeature.Require(ALLOWS_NULL_KEYS)
MapEqualsTester.java 19 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_KEYS;
20 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_VALUES;
25 import com.google.common.collect.testing.features.MapFeature;
59 @MapFeature.Require(ALLOWS_NULL_KEYS)
83 @MapFeature.Require(ALLOWS_NULL_VALUES)
MapNavigationTester.java 22 import static com.google.common.collect.testing.features.MapFeature.SUPPORTS_REMOVE;
27 import com.google.common.collect.testing.features.MapFeature;
89 @MapFeature.Require(SUPPORTS_REMOVE)
117 @MapFeature.Require(SUPPORTS_REMOVE)
129 @MapFeature.Require(SUPPORTS_REMOVE)
154 @MapFeature.Require(SUPPORTS_REMOVE)
167 @MapFeature.Require(SUPPORTS_REMOVE)
175 @MapFeature.Require(absent = SUPPORTS_REMOVE)
234 @MapFeature.Require(SUPPORTS_REMOVE)
242 @MapFeature.Require(absent = SUPPORTS_REMOVE
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
MapFeature.java 36 public enum MapFeature implements Feature<Map> {
72 MapFeature(Feature<? super Map> ... implied) {
85 public abstract MapFeature[] value() default {};
86 public abstract MapFeature[] absent() default {};
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForMapsInJavaUtil.java 21 import com.google.common.collect.testing.features.MapFeature;
112 MapFeature.ALLOWS_NULL_KEYS,
113 MapFeature.ALLOWS_NULL_VALUES,
137 MapFeature.GENERAL_PURPOSE,
138 MapFeature.ALLOWS_NULL_KEYS,
139 MapFeature.ALLOWS_NULL_VALUES,
155 MapFeature.GENERAL_PURPOSE,
156 MapFeature.ALLOWS_NULL_KEYS,
157 MapFeature.ALLOWS_NULL_VALUES,
175 MapFeature.GENERAL_PURPOSE
    [all...]
MapTestSuiteBuilder.java 22 import com.google.common.collect.testing.features.MapFeature;
134 if (mapFeatures.contains(MapFeature.ALLOWS_NULL_KEYS)) {
136 } else if (mapFeatures.contains(MapFeature.ALLOWS_NULL_QUERIES)) {
149 if (mapFeatures.contains(MapFeature.ALLOWS_NULL_VALUES)) {
159 if (mapFeatures.contains(MapFeature.SUPPORTS_REMOVE)) {
164 if (mapFeatures.contains(MapFeature.SUPPORTS_CLEAR)) {
167 if (mapFeatures.contains(MapFeature.REJECTS_DUPLICATES_AT_CREATION)) {
  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingSortedMapTest.java 24 import com.google.common.collect.testing.features.MapFeature;
134 CollectionFeature.KNOWN_ORDER, MapFeature.ALLOWS_NULL_VALUES,
135 MapFeature.GENERAL_PURPOSE).createTestSuite());
156 CollectionFeature.KNOWN_ORDER, MapFeature.ALLOWS_NULL_VALUES,
157 MapFeature.ALLOWS_NULL_KEYS, MapFeature.GENERAL_PURPOSE)
177 CollectionSize.ANY, MapFeature.REJECTS_DUPLICATES_AT_CREATION,
178 MapFeature.ALLOWS_NULL_QUERIES)
MutableClassToInstanceMapTest.java 22 import com.google.common.collect.testing.features.MapFeature;
71 MapFeature.GENERAL_PURPOSE,
72 MapFeature.RESTRICTS_KEYS,
73 MapFeature.ALLOWS_NULL_VALUES,
75 MapFeature.ALLOWS_NULL_QUERIES)
ForwardingMapTest.java 28 import com.google.common.collect.testing.features.MapFeature;
133 .withFeatures(CollectionSize.ANY, MapFeature.ALLOWS_NULL_VALUES,
134 MapFeature.ALLOWS_NULL_KEYS, MapFeature.GENERAL_PURPOSE)
149 CollectionSize.ANY, MapFeature.REJECTS_DUPLICATES_AT_CREATION,
150 MapFeature.ALLOWS_NULL_QUERIES)
ImmutableClassToInstanceMapTest.java 24 import com.google.common.collect.testing.features.MapFeature;
63 MapFeature.REJECTS_DUPLICATES_AT_CREATION,
64 MapFeature.RESTRICTS_KEYS,
67 MapFeature.ALLOWS_NULL_QUERIES)
MapsTest.java 38 import com.google.common.collect.testing.features.MapFeature;
    [all...]
TreeBasedTableTest.java 27 import com.google.common.collect.testing.features.MapFeature;
66 }).withFeatures(MapFeature.GENERAL_PURPOSE, CollectionSize.ANY)

Completed in 2861 milliseconds