Home
last modified time | relevance | path

Searched defs:nextInt (Results 1 – 25 of 932) sorted by relevance

12345678910>>...38

/aosp_15_r20/external/jazzer-api/src/main/java/com/code_intelligence/jazzer/instrumentor/
H A DDeterministicRandom.kt32 fun nextInt(bound: Int) = random.nextInt(bound) method
34 fun nextInt() = random.nextInt() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/
DRandom.java150 public int nextInt() { in nextInt() method in Random.RandomWrapper
155 public int nextInt(int bound) { in nextInt() method in Random.RandomWrapper
160 public int nextInt(int origin, int bound) { in nextInt() method in Random.RandomWrapper
513 public int nextInt() { in nextInt() method in Random
574 public int nextInt(int bound) { in nextInt() method in Random
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/
H A DRandom.java150 public int nextInt() { in nextInt() method in Random.RandomWrapper
155 public int nextInt(int bound) { in nextInt() method in Random.RandomWrapper
160 public int nextInt(int origin, int bound) { in nextInt() method in Random.RandomWrapper
513 public int nextInt() { in nextInt() method in Random
574 public int nextInt(int bound) { in nextInt() method in Random
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/
DRandom.java150 public int nextInt() { in nextInt() method in Random.RandomWrapper
155 public int nextInt(int bound) { in nextInt() method in Random.RandomWrapper
160 public int nextInt(int origin, int bound) { in nextInt() method in Random.RandomWrapper
513 public int nextInt() { in nextInt() method in Random
574 public int nextInt(int bound) { in nextInt() method in Random
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/concurrent/
H A DThreadLocalRandom.java435 public int nextInt() { in nextInt() method in ThreadLocalRandom.ThreadLocalRandomProxy
460 public int nextInt() { in nextInt() method in ThreadLocalRandom
469 public int nextInt(int bound) { in nextInt() method in ThreadLocalRandom
478 public int nextInt(int origin, int bound) { in nextInt() method in ThreadLocalRandom
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/20/libcore/ojluni/src/main/java/java/util/concurrent/
DThreadLocalRandom.java435 public int nextInt() { in nextInt() method in ThreadLocalRandom.ThreadLocalRandomProxy
460 public int nextInt() { in nextInt() method in ThreadLocalRandom
469 public int nextInt(int bound) { in nextInt() method in ThreadLocalRandom
478 public int nextInt(int origin, int bound) { in nextInt() method in ThreadLocalRandom
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/concurrent/
DThreadLocalRandom.java435 public int nextInt() { in nextInt() method in ThreadLocalRandom.ThreadLocalRandomProxy
460 public int nextInt() { in nextInt() method in ThreadLocalRandom
469 public int nextInt(int bound) { in nextInt() method in ThreadLocalRandom
478 public int nextInt(int origin, int bound) { in nextInt() method in ThreadLocalRandom
/aosp_15_r20/libcore/ojluni/src/test/java/lang/invoke/
H A DExplicitCastArgumentsTest.java66 RANDOM_VALUES.put(Wrapper.BYTE, (byte) RNG.nextInt()); in RANDOM_VALUES.put()
67 RANDOM_VALUES.put(Wrapper.SHORT, (short) RNG.nextInt()); in RANDOM_VALUES.put()
68 RANDOM_VALUES.put(Wrapper.CHAR, (char) RNG.nextInt()); in RANDOM_VALUES.put()
69 RANDOM_VALUES.put(Wrapper.INT, RNG.nextInt()); in RANDOM_VALUES.put()
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/concurrent/
H A DThreadLocalRandom.annotated.java55 public int nextInt() { throw new RuntimeException("Stub!"); } in nextInt() method in ThreadLocalRandom
57 public int nextInt(int bound) { throw new RuntimeException("Stub!"); } in nextInt() method in ThreadLocalRandom
59 public int nextInt(int origin, int bound) { throw new RuntimeException("Stub!"); } in nextInt() method in ThreadLocalRandom
/aosp_15_r20/external/grpc-grpc-java/xds/src/main/java/io/grpc/xds/
H A DThreadSafeRandom.java24 int nextInt(int bound); in nextInt() method
37 public int nextInt(int bound) { in nextInt() method in ThreadSafeRandom.ThreadSafeRandomImpl
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math3/random/
H A DRandomGenerator.java70 int nextInt(); in nextInt() method
81 int nextInt(int n); in nextInt() method
H A DRandomGeneratorFactory.java61 public int nextInt() { in createRandomGenerator() method in RandomGeneratorFactory
66 public int nextInt(int n) { in createRandomGenerator() method in RandomGeneratorFactory
H A DSynchronizedRandomGenerator.java62 public synchronized int nextInt() { in nextInt() method in SynchronizedRandomGenerator
67 public synchronized int nextInt(int n) { in nextInt() method in SynchronizedRandomGenerator
H A DRandomAdaptor.java130 public int nextInt() { in nextInt() method in RandomAdaptor
144 public int nextInt(int n) { in nextInt() method in RandomAdaptor
H A DAbstractRandomGenerator.java123 public int nextInt() { in nextInt() method in AbstractRandomGenerator
142 public int nextInt(int n) { in nextInt() method in AbstractRandomGenerator
/aosp_15_r20/external/apache-commons-math/src/main/java/org/apache/commons/math/random/
H A DRandomGenerator.java78 int nextInt(); in nextInt() method
91 int nextInt(int n); in nextInt() method
H A DRandomAdaptor.java142 public int nextInt() { in nextInt() method in RandomAdaptor
158 public int nextInt(int n) { in nextInt() method in RandomAdaptor
H A DAbstractRandomGenerator.java136 public int nextInt() { in nextInt() method in AbstractRandomGenerator
156 public int nextInt(int n) { in nextInt() method in AbstractRandomGenerator
/aosp_15_r20/cts/tests/tests/keystore/src/android/keystore/cts/
H A DCountingSecureRandom.java92 public int nextInt() { in nextInt() method in CountingSecureRandom
97 public int nextInt(int n) { in nextInt() method in CountingSecureRandom
/aosp_15_r20/external/apache-commons-lang/src/main/java/org/apache/commons/lang3/
H A DRandomUtils.java142 public static int nextInt() { in nextInt() method in RandomUtils
158 public static int nextInt(final int startInclusive, final int endExclusive) { in nextInt() method in RandomUtils
/aosp_15_r20/libcore/ojluni/annotations/flagged_api/java/util/random/
H A DRandomGenerator.annotated.java79 public default int nextInt() { throw new RuntimeException("Stub!"); } in nextInt() method
81 public default int nextInt(int bound) { throw new RuntimeException("Stub!"); } in nextInt() method
83 public default int nextInt(int origin, int bound) { throw new RuntimeException("Stub!"); } in nextInt() method
/aosp_15_r20/packages/modules/AdServices/adservices/tests/test-util/java/com/android/adservices/
DMockRandom.java97 public synchronized int nextInt() { in nextInt() method in MockRandom
102 public synchronized int nextInt(int n) { in nextInt() method in MockRandom
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/random/
DRandomGenerator.java628 default int nextInt() { in nextInt() method
651 default int nextInt(int bound) { in nextInt() method
678 default int nextInt(int origin, int bound) { in nextInt() method
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/24/libcore/ojluni/src/main/java/java/util/random/
DRandomGenerator.java628 default int nextInt() { in nextInt() method
651 default int nextInt(int bound) { in nextInt() method
678 default int nextInt(int origin, int bound) { in nextInt() method
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/random/
H A DRandomGenerator.java628 default int nextInt() { in nextInt() method
651 default int nextInt(int bound) { in nextInt() method
678 default int nextInt(int origin, int bound) { in nextInt() method

12345678910>>...38