Home
last modified time | relevance | path

Searched refs:searchKeys (Results 1 – 2 of 2) sorted by relevance

/libcore/jsr166-tests/src/test/java/jsr166/
DConcurrentHashMap8Test.java997 r = m.searchKeys(Long.MAX_VALUE, (Long x) -> x.longValue() == (long)(SIZE/2) ? x : null); in testSearchKeysSequentially()
999 r = m.searchKeys(Long.MAX_VALUE, (Long x) -> x.longValue() < 0L ? x : null); in testSearchKeysSequentially()
1051 r = m.searchKeys(1L, (Long x) -> x.longValue() == (long)(SIZE/2) ? x : null); in testSearchKeysInParallel()
1053 r = m.searchKeys(1L, (Long x) -> x.longValue() < 0L ? x : null); in testSearchKeysInParallel()
/libcore/ojluni/annotations/sdk/nullability/java/util/concurrent/
DConcurrentHashMap.annotated.java148 …@libcore.util.Nullable public <U> U searchKeys(long parallelismThreshold, @libcore.util.NonNull ja… in searchKeys() method in ConcurrentHashMap