HomeSort by relevance Sort by last modified time
    Searched defs:ThreadLocalRandom (Results 1 - 3 of 3) sorted by null

  /libcore/luni/src/main/java/java/util/concurrent/
ThreadLocalRandom.java 14 * java.lang.Math} class, a {@code ThreadLocalRandom} is initialized
16 * modified. When applicable, use of {@code ThreadLocalRandom} rather
19 * {@code ThreadLocalRandom} is particularly appropriate when multiple
24 * {@code ThreadLocalRandom.current().nextX(...)} (where
27 * accidently share a {@code ThreadLocalRandom} across multiple threads.
35 public class ThreadLocalRandom extends Random {
62 private static final ThreadLocal<ThreadLocalRandom> localRandom =
63 new ThreadLocal<ThreadLocalRandom>() {
64 protected ThreadLocalRandom initialValue() {
65 return new ThreadLocalRandom();
    [all...]
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 79 milliseconds