Home
last modified time | relevance | path

Searched refs:checkEmpty (Results 1 – 11 of 11) sorted by relevance

/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
48 checkEmpty(cache); in testEmpty()
59 checkEmpty(cache); in testInvalidate_empty()
69 checkEmpty(cache); in testInvalidateAll_empty()
98 checkEmpty(cache); in testGet_null()
110 checkEmpty(cache); in testGetUnchecked_null()
125 checkEmpty(cache); in testKeySet_nullToArray()
153 checkEmpty(keys); in testKeySet_clear()
154 checkEmpty(cache); in testKeySet_clear()
166 checkEmpty(keys); in testKeySet_empty_remove()
[all …]
DNullCacheTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
56 checkEmpty(cache); in testGet()
73 checkEmpty(cache); in testGet_expireAfterWrite()
90 checkEmpty(cache); in testGet_expireAfterAccess()
105 checkEmpty(cache); in testGet_computeNull()
122 checkEmpty(map); in testGet_runtimeException()
DPopulatedCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
172 checkEmpty(cache); in testRemove_byKey()
188 checkEmpty(cache); in testRemove_byKeyAndValue()
214 checkEmpty(keys); in testKeySet_populated()
215 checkEmpty(cache); in testKeySet_populated()
237 checkEmpty(values); in testValues_populated()
238 checkEmpty(cache); in testValues_populated()
267 checkEmpty(entries); in testEntrySet_populated()
268 checkEmpty(cache); in testEntrySet_populated()
DCacheTesting.java447 static void checkEmpty(Cache<?, ?> cache) {
453 checkEmpty(cache.asMap());
456 static void checkEmpty(ConcurrentMap<?, ?> map) {
457 checkEmpty(map.keySet());
458 checkEmpty(map.values());
459 checkEmpty(map.entrySet());
479 static void checkEmpty(Collection<?> collection) {
DCacheBuilderTest.java378 CacheTesting.checkEmpty(nullCache.asMap()); in testNullCache()
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/
DSummaryStatistics.java419 checkEmpty(); in setSumImpl()
448 checkEmpty(); in setSumsqImpl()
477 checkEmpty(); in setMinImpl()
506 checkEmpty(); in setMaxImpl()
535 checkEmpty(); in setSumLogImpl()
565 checkEmpty(); in setGeoMeanImpl()
594 checkEmpty(); in setMeanImpl()
623 checkEmpty(); in setVarianceImpl()
630 private void checkEmpty() { in checkEmpty() method in SummaryStatistics
DMultivariateSummaryStatistics.java420 checkEmpty(); in setImpl()
617 private void checkEmpty() { in checkEmpty() method in MultivariateSummaryStatistics
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/moment/
DGeometricMean.java167 checkEmpty(); in setSumLogImpl()
197 private void checkEmpty() { in checkEmpty() method in GeometricMean
/external/skia/src/core/
DSkClipStack.cpp149 SkDEBUGCODE(this->checkEmpty();) in setEmpty()
152 void SkClipStack::Element::checkEmpty() const { in checkEmpty() function in SkClipStack::Element
695 SkDEBUGCODE(prior->checkEmpty();) in pushElement()
DSkClipStack.h299 inline void checkEmpty() const;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJSR166TestCase.java1186 void checkEmpty(BlockingQueue q) {