Searched refs:searchKeys (Results 1 – 2 of 2) sorted by relevance
997 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()
148 …@libcore.util.Nullable public <U> U searchKeys(long parallelismThreshold, @libcore.util.NonNull ja… in searchKeys() method in ConcurrentHashMap