HomeSort by relevance Sort by last modified time
    Searched refs:ALLOWS_NULL_QUERIES (Results 1 - 25 of 31) sorted by null

1 2

  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableSetCollectionTest.java 67 CollectionFeature.ALLOWS_NULL_QUERIES)
78 CollectionFeature.ALLOWS_NULL_QUERIES)
85 CollectionFeature.ALLOWS_NULL_QUERIES)
92 CollectionFeature.ALLOWS_NULL_QUERIES)
99 CollectionFeature.ALLOWS_NULL_QUERIES)
110 CollectionFeature.ALLOWS_NULL_QUERIES)
117 CollectionFeature.ALLOWS_NULL_QUERIES)
124 CollectionFeature.ALLOWS_NULL_QUERIES)
131 CollectionFeature.ALLOWS_NULL_QUERIES)
146 CollectionFeature.ALLOWS_NULL_QUERIES)
    [all...]
MultisetCollectionTest.java 62 CollectionFeature.ALLOWS_NULL_QUERIES)
80 CollectionFeature.ALLOWS_NULL_QUERIES)
118 CollectionFeature.ALLOWS_NULL_QUERIES)
126 CollectionFeature.ALLOWS_NULL_QUERIES)
139 CollectionFeature.ALLOWS_NULL_QUERIES)
TransformedImmutableListTest.java 49 CollectionFeature.ALLOWS_NULL_QUERIES).createTestSuite();
ImmutableBiMapTest.java 69 CollectionFeature.ALLOWS_NULL_QUERIES)
76 CollectionFeature.ALLOWS_NULL_QUERIES)
85 CollectionFeature.ALLOWS_NULL_QUERIES)
95 CollectionFeature.ALLOWS_NULL_QUERIES)
102 CollectionFeature.ALLOWS_NULL_QUERIES)
109 CollectionFeature.ALLOWS_NULL_QUERIES)
117 CollectionFeature.ALLOWS_NULL_QUERIES)
125 CollectionFeature.ALLOWS_NULL_QUERIES)
136 CollectionFeature.ALLOWS_NULL_QUERIES)
ImmutableMapTest.java 75 CollectionFeature.ALLOWS_NULL_QUERIES)
84 CollectionFeature.ALLOWS_NULL_QUERIES)
91 CollectionFeature.ALLOWS_NULL_QUERIES)
102 CollectionFeature.ALLOWS_NULL_QUERIES)
113 CollectionFeature.ALLOWS_NULL_QUERIES)
121 CollectionFeature.ALLOWS_NULL_QUERIES)
128 CollectionFeature.ALLOWS_NULL_QUERIES)
136 CollectionFeature.ALLOWS_NULL_QUERIES)
ContiguousSetNonGwtTest.java 66 CollectionFeature.ALLOWS_NULL_QUERIES,
ImmutableListTest.java 75 CollectionFeature.ALLOWS_NULL_QUERIES)
80 CollectionFeature.ALLOWS_NULL_QUERIES)
85 CollectionFeature.ALLOWS_NULL_QUERIES)
90 CollectionFeature.ALLOWS_NULL_QUERIES)
100 CollectionFeature.ALLOWS_NULL_QUERIES)
106 CollectionFeature.ALLOWS_NULL_QUERIES)
112 CollectionFeature.ALLOWS_NULL_QUERIES)
118 CollectionFeature.ALLOWS_NULL_QUERIES)
125 CollectionFeature.ALLOWS_NULL_QUERIES)
ImmutableSortedMapTest.java 75 CollectionFeature.ALLOWS_NULL_QUERIES)
85 CollectionFeature.ALLOWS_NULL_QUERIES)
92 CollectionFeature.ALLOWS_NULL_QUERIES)
103 CollectionFeature.ALLOWS_NULL_QUERIES)
114 CollectionFeature.ALLOWS_NULL_QUERIES)
122 CollectionFeature.ALLOWS_NULL_QUERIES)
132 CollectionFeature.ALLOWS_NULL_QUERIES)
142 CollectionFeature.ALLOWS_NULL_QUERIES)
149 CollectionFeature.ALLOWS_NULL_QUERIES)
TableCollectionTest.java 62 CollectionFeature.ALLOWS_NULL_QUERIES
68 CollectionFeature.ALLOWS_NULL_QUERIES
74 CollectionFeature.ALLOWS_NULL_QUERIES
81 CollectionFeature.ALLOWS_NULL_QUERIES
133 CollectionFeature.ALLOWS_NULL_QUERIES)
258 CollectionFeature.ALLOWS_NULL_QUERIES)
452 CollectionFeature.ALLOWS_NULL_QUERIES)
462 CollectionFeature.ALLOWS_NULL_QUERIES)
472 CollectionFeature.ALLOWS_NULL_QUERIES)
484 CollectionFeature.ALLOWS_NULL_QUERIES)
    [all...]
MutableClassToInstanceMapTest.java 75 MapFeature.ALLOWS_NULL_QUERIES)
ListsTest.java 150 CollectionFeature.ALLOWS_NULL_QUERIES)
165 CollectionFeature.ALLOWS_NULL_QUERIES)
234 CollectionFeature.ALLOWS_NULL_QUERIES)
259 CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_QUERIES)
286 CollectionSize.ANY, CollectionFeature.ALLOWS_NULL_QUERIES)
ImmutableMultisetTest.java 65 CollectionFeature.ALLOWS_NULL_QUERIES)
77 CollectionFeature.ALLOWS_NULL_QUERIES)
88 CollectionFeature.ALLOWS_NULL_QUERIES)
ImmutableSortedMultisetTest.java 65 CollectionFeature.ALLOWS_NULL_QUERIES)
79 CollectionFeature.ALLOWS_NULL_QUERIES)
95 CollectionFeature.ALLOWS_NULL_QUERIES)
Collections2Test.java 164 CollectionFeature.ALLOWS_NULL_QUERIES,
189 CollectionFeature.ALLOWS_NULL_QUERIES,
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
MapFeature.java 41 ALLOWS_NULL_QUERIES,
42 ALLOWS_NULL_KEYS (ALLOWS_NULL_QUERIES),
CollectionFeature.java 44 ALLOWS_NULL_QUERIES,
46 ALLOWS_NULL_VALUES (ALLOWS_NULL_QUERIES),
  /external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
CollectionContainsTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
50 @CollectionFeature.Require(ALLOWS_NULL_QUERIES)
56 @CollectionFeature.Require(absent = ALLOWS_NULL_QUERIES)
MapContainsKeyTester.java 21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
49 @MapFeature.Require(ALLOWS_NULL_QUERIES)
55 @MapFeature.Require(absent = ALLOWS_NULL_QUERIES)
MapGetTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
50 @CollectionFeature.Require(ALLOWS_NULL_QUERIES)
55 @CollectionFeature.Require(absent = ALLOWS_NULL_QUERIES)
MapContainsValueTester.java 49 @MapFeature.Require(ALLOWS_NULL_QUERIES)
55 @MapFeature.Require(absent = ALLOWS_NULL_QUERIES)
CollectionContainsAllTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
75 @CollectionFeature.Require(absent = ALLOWS_NULL_QUERIES)
82 @CollectionFeature.Require(ALLOWS_NULL_QUERIES)
MapRemoveTester.java 21 import static com.google.common.collect.testing.features.MapFeature.ALLOWS_NULL_QUERIES;
99 absent = ALLOWS_NULL_QUERIES)
110 @MapFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_QUERIES})
CollectionRemoveAllTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
150 absent = ALLOWS_NULL_QUERIES)
161 @CollectionFeature.Require({SUPPORTS_REMOVE_ALL, ALLOWS_NULL_QUERIES})
CollectionRemoveTester.java 19 import static com.google.common.collect.testing.features.CollectionFeature.ALLOWS_NULL_QUERIES;
99 absent = ALLOWS_NULL_QUERIES)
110 @CollectionFeature.Require({SUPPORTS_REMOVE, ALLOWS_NULL_QUERIES})
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
MapTestSuiteBuilder.java 125 entrySetFeatures.add(CollectionFeature.ALLOWS_NULL_QUERIES);
136 } else if (mapFeatures.contains(MapFeature.ALLOWS_NULL_QUERIES)) {
137 keySetFeatures.add(CollectionFeature.ALLOWS_NULL_QUERIES);
147 valuesCollectionFeatures.add(CollectionFeature.ALLOWS_NULL_QUERIES);

Completed in 1264 milliseconds

1 2