Home
last modified time | relevance | path

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

12

/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
47 checkEmpty(cache); in testEmpty()
59 checkEmpty(cache); in testInvalidate_empty()
69 checkEmpty(cache); in testInvalidateAll_empty()
94 checkEmpty(cache); in testGet_null()
101 checkEmpty(cache); in testGetUnchecked_null()
111 checkEmpty(cache); in testKeySet_nullToArray()
131 checkEmpty(keys); in testKeySet_clear()
132 checkEmpty(cache); in testKeySet_clear()
144 checkEmpty(keys); in testKeySet_empty_remove()
[all …]
DNullCacheTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
58 checkEmpty(cache); in testGet()
76 checkEmpty(cache); in testGet_expireAfterWrite()
94 checkEmpty(cache); in testGet_expireAfterAccess()
107 checkEmpty(cache); in testGet_computeNull()
122 checkEmpty(map); in testGet_runtimeException()
DPopulatedCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
171 checkEmpty(cache); in testRemove_byKey()
187 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()
265 checkEmpty(entries); in testEntrySet_populated()
266 checkEmpty(cache); in testEntrySet_populated()
DCacheTesting.java445 static void checkEmpty(Cache<?, ?> cache) {
451 checkEmpty(cache.asMap());
454 static void checkEmpty(ConcurrentMap<?, ?> map) {
455 checkEmpty(map.keySet());
456 checkEmpty(map.values());
457 checkEmpty(map.entrySet());
477 static void checkEmpty(Collection<?> collection) {
DLocalCacheMapComputeTest.java118 CacheTesting.checkEmpty(cache); in testComputeIfPresentRemove()
123 CacheTesting.checkEmpty(cache); in testComputeIfPresentRemove()
176 CacheTesting.checkEmpty(cache); in testComputeWithLoad()
/external/guava/android/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
47 checkEmpty(cache); in testEmpty()
59 checkEmpty(cache); in testInvalidate_empty()
69 checkEmpty(cache); in testInvalidateAll_empty()
94 checkEmpty(cache); in testGet_null()
101 checkEmpty(cache); in testGetUnchecked_null()
111 checkEmpty(cache); in testKeySet_nullToArray()
131 checkEmpty(keys); in testKeySet_clear()
132 checkEmpty(cache); in testKeySet_clear()
144 checkEmpty(keys); in testKeySet_empty_remove()
[all …]
DNullCacheTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
58 checkEmpty(cache); in testGet()
76 checkEmpty(cache); in testGet_expireAfterWrite()
94 checkEmpty(cache); in testGet_expireAfterAccess()
107 checkEmpty(cache); in testGet_computeNull()
122 checkEmpty(map); in testGet_runtimeException()
DPopulatedCachesTest.java17 import static com.google.common.cache.CacheTesting.checkEmpty;
171 checkEmpty(cache); in testRemove_byKey()
187 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()
265 checkEmpty(entries); in testEntrySet_populated()
266 checkEmpty(cache); in testEntrySet_populated()
DCacheTesting.java445 static void checkEmpty(Cache<?, ?> cache) {
451 checkEmpty(cache.asMap());
454 static void checkEmpty(ConcurrentMap<?, ?> map) {
455 checkEmpty(map.keySet());
456 checkEmpty(map.values());
457 checkEmpty(map.entrySet());
477 static void checkEmpty(Collection<?> collection) {
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/channels/
DTickerChannelTest.kt13 delayChannel.checkEmpty() in <lambda>()
18 delayChannel.checkEmpty() in <lambda>()
30 delayChannel.checkEmpty() in <lambda>()
37 delayChannel.checkEmpty() in <lambda>()
49 delayChannel.checkEmpty() in <lambda>()
56 delayChannel.checkEmpty() in <lambda>()
DTickerChannelCommonTest.kt39 delayChannel.checkEmpty() in invoke()
42 delayChannel.checkEmpty() in invoke()
56 delayChannel.checkEmpty() in <lambda>()
58 delayChannel.checkEmpty() in <lambda>()
64 delayChannel.checkEmpty() in <lambda>()
159 fun ReceiveChannel<Unit>.checkEmpty() = assertNull(tryReceive().getOrNull()) in checkEmpty() method
/external/apache-commons-io/src/test/java/org/apache/commons/io/
DIOExceptionListTest.java57 IOExceptionList.checkEmpty(null, ""); in testCheckEmpty()
58 IOExceptionList.checkEmpty(null, null); in testCheckEmpty()
59 IOExceptionList.checkEmpty(Collections.emptyList(), ""); in testCheckEmpty()
60 IOExceptionList.checkEmpty(Collections.emptyList(), null); in testCheckEmpty()
61 …assertThrows(IOExceptionList.class, () -> IOExceptionList.checkEmpty(Collections.singletonList(new… in testCheckEmpty()
62 …assertThrows(IOExceptionList.class, () -> IOExceptionList.checkEmpty(Collections.singletonList(new… in testCheckEmpty()
/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/math3/stat/descriptive/
DSummaryStatistics.java447 checkEmpty(); in setSumImpl()
477 checkEmpty(); in setSumsqImpl()
507 checkEmpty(); in setMinImpl()
537 checkEmpty(); in setMaxImpl()
567 checkEmpty(); in setSumLogImpl()
598 checkEmpty(); in setGeoMeanImpl()
628 checkEmpty(); in setMeanImpl()
658 checkEmpty(); in setVarianceImpl()
666 private void checkEmpty() throws MathIllegalStateException { in checkEmpty() method in SummaryStatistics
DMultivariateSummaryStatistics.java420 checkEmpty(); in setImpl()
618 private void checkEmpty() throws MathIllegalStateException { 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/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DMapSerializer.java642 final boolean checkEmpty = (MARKER_FOR_EMPTY == supp); in isEmpty()
651 if (checkEmpty) { in isEmpty()
675 if (checkEmpty) { in isEmpty()
827 final boolean checkEmpty = (MARKER_FOR_EMPTY == suppressableValue); in serializeOptionalFields()
856 if (checkEmpty) { in serializeOptionalFields()
928 final boolean checkEmpty = (MARKER_FOR_EMPTY == suppressableValue); in serializeFilteredFields()
959 if (checkEmpty) { in serializeFilteredFields()
986 final boolean checkEmpty = (MARKER_FOR_EMPTY == suppressableValue); in serializeTypedFields()
1015 if (checkEmpty) { in serializeTypedFields()
1048 final boolean checkEmpty = (MARKER_FOR_EMPTY == suppressableValue); in serializeFilteredAnyProperties()
[all …]
/external/apache-commons-math/src/main/java/org/apache/commons/math3/stat/descriptive/moment/
DGeometricMean.java172 checkEmpty(); in setSumLogImpl()
206 private void checkEmpty() throws MathIllegalStateException { in checkEmpty() method in GeometricMean
/external/apache-commons-io/src/main/java/org/apache/commons/io/
DIOExceptionList.java47 …public static void checkEmpty(final List<? extends Throwable> causeList, final Object message) thr… in checkEmpty() method in IOExceptionList
/external/apache-velocity-engine/velocity-engine-core/src/main/java/org/apache/velocity/runtime/parser/node/
DASTReference.java78 private boolean checkEmpty; field in ASTReference
221 checkEmpty = in init()
684 return DuckType.asBoolean(value, checkEmpty); in evaluate()
/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/
DTestDtdData.java198 checkEmpty( in TestValueAttributesWithChildren()
230 private void checkEmpty( in checkEmpty() method in TestDtdData
348 checkEmpty(m, type, child, special, seen, parents); in checkEmpty()
/external/skia/src/core/
DSkClipStack.cpp288 SkDEBUGCODE(this->checkEmpty();) in setEmpty()
291 void SkClipStack::Element::checkEmpty() const { in checkEmpty() function in SkClipStack::Element
703 SkDEBUGCODE(prior->checkEmpty();) in pushElement()
/external/angle/third_party/glslang/src/glslang/MachineIndependent/
Diomapper.h76 bool checkEmpty(int set, int slot);
/external/deqp-deps/glslang/glslang/MachineIndependent/
Diomapper.h76 bool checkEmpty(int set, int slot);

12