Searched refs:ABSENT_VALUE (Results 1 – 1 of 1) sorted by relevance
/libcore/ojluni/src/test/java/util/Collection/ |
D | MOAT.java | 68 static final int ABSENT_VALUE = 778347983; field in MOAT 510 () -> c.remove(ABSENT_VALUE), in testCollMutatorsAlwaysThrow() 563 () -> m.compute(ABSENT_VALUE, (k, v) -> null), in testMapMutatorsAlwaysThrow() 564 () -> m.computeIfAbsent(ABSENT_VALUE, k -> null), in testMapMutatorsAlwaysThrow() 565 () -> m.computeIfPresent(ABSENT_VALUE, (k, v) -> null), in testMapMutatorsAlwaysThrow() 566 () -> m.merge(ABSENT_VALUE, 0, (k, v) -> null), in testMapMutatorsAlwaysThrow() 568 () -> m.remove(ABSENT_VALUE), in testMapMutatorsAlwaysThrow() 569 () -> m.remove(ABSENT_VALUE, 0), in testMapMutatorsAlwaysThrow() 570 () -> m.replace(ABSENT_VALUE, 0), in testMapMutatorsAlwaysThrow() 571 () -> m.replace(ABSENT_VALUE, 0, 1)); in testMapMutatorsAlwaysThrow() [all …]
|