Home
last modified time | relevance | path

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

/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
46 checkEmpty(cache); in testEmpty()
57 checkEmpty(cache); in testInvalidate_empty()
67 checkEmpty(cache); in testInvalidateAll_empty()
96 checkEmpty(cache); in testGet_null()
108 checkEmpty(cache); in testGetUnchecked_null()
123 checkEmpty(cache); in testKeySet_nullToArray()
151 checkEmpty(keys); in testKeySet_clear()
152 checkEmpty(cache); in testKeySet_clear()
164 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;
173 checkEmpty(cache); in testRemove_byKey()
189 checkEmpty(cache); in testRemove_byKeyAndValue()
216 checkEmpty(keys); in testKeySet_populated()
217 checkEmpty(cache); in testKeySet_populated()
240 checkEmpty(values); in testValues_populated()
241 checkEmpty(cache); in testValues_populated()
269 checkEmpty(entries); in testEntrySet_populated()
270 checkEmpty(cache); in testEntrySet_populated()
DCacheTesting.java440 static void checkEmpty(Cache<?, ?> cache) {
446 checkEmpty(cache.asMap());
449 static void checkEmpty(ConcurrentMap<?, ?> map) {
450 checkEmpty(map.keySet());
451 checkEmpty(map.values());
452 checkEmpty(map.entrySet());
472 static void checkEmpty(Collection<?> collection) {
DCacheBuilderTest.java385 CacheTesting.checkEmpty(nullCache.asMap()); in testNullCache()
/external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
DCheckedInputStreamTest.java64 CheckedInputStream checkEmpty = new CheckedInputStream(inEmp, new CRC32()); in test_getChecksum() local
65 while (checkEmpty.read() >= 0) { in test_getChecksum()
67 assertEquals("the checkSum value of an empty file is not zero", 0, checkEmpty in test_getChecksum()
/external/skia/src/core/
DSkClipStack.cpp34 void SkClipStack::Element::checkEmpty() const { in checkEmpty() function in SkClipStack::Element
534 element->checkEmpty(); in clipDevRect()
578 element->checkEmpty(); in clipDevPath()
611 element->checkEmpty(); in clipEmpty()
/external/skia/include/core/
DSkClipStack.h235 inline void checkEmpty() const;
/external/guava/guava-tests/test/com/google/common/util/concurrent/
DJSR166TestCase.java1184 void checkEmpty(BlockingQueue q) {