Home
last modified time | relevance | path

Searched refs:randomInt (Results 1 – 11 of 11) sorted by relevance

/external/auto/value/src/it/functional/src/test/java/com/google/auto/value/
DAutoValueJava8Test.java140 abstract int randomInt(); in randomInt() method in AutoValueJava8Test.NullableProperties
142 static NullableProperties create(@Nullable String nullableString, int randomInt) { in create() argument
143 return new AutoValue_AutoValueJava8Test_NullableProperties(nullableString, randomInt); in create()
151 assertThat(instance.randomInt()).isEqualTo(23); in testNullablePropertiesCanBeNull()
191 abstract int randomInt(); in randomInt() method in AutoValueJava8Test.NullablePropertiesNotCopied
193 NullablePropertiesNotCopied create(String notNullableAfterAll, int randomInt) { in create() argument
195 notNullableAfterAll, randomInt); in create()
271 abstract int randomInt(); in randomInt() method in AutoValueJava8Test.NestedNullableProperties
291 assertThat(instance.randomInt()).isEqualTo(23); in testNestedNullablePropertiesCanBeNull()
DAutoValueTest.java544 abstract int randomInt(); in randomInt() method in AutoValueTest.NullableProperties
546 static NullableProperties create(@Nullable String nullableString, int randomInt) { in create() argument
547 return new AutoValue_AutoValueTest_NullableProperties(nullableString, randomInt); in create()
555 assertThat(instance.randomInt()).isEqualTo(23); in testNullablePropertiesCanBeNull()
581 abstract int randomInt(); in randomInt() method in AutoValueTest.AlternativeNullableProperties
583 static AlternativeNullableProperties create(@Nullable String nullableString, int randomInt) { in create() argument
584 return new AutoValue_AutoValueTest_AlternativeNullableProperties(nullableString, randomInt); in create()
592 assertThat(instance.randomInt()).isEqualTo(23); in testNullableCanBeFromElsewhere()
604 abstract int randomInt(); in randomInt() method in AutoValueTest.NonNullableProperties
606 static NonNullableProperties create(String nonNullableString, int randomInt) { in create() argument
[all …]
/external/eigen/unsupported/test/
Dmatrix_function.cpp59 Index randomInt = internal::random<Index>(-1, 1); in run() local
60 if (randomInt == 0 || i == size-1) { in run()
64 Scalar alpha = Scalar(randomInt) + internal::random<Scalar>() * Scalar(0.01); in run()
/external/clang/test/Analysis/
Darray-struct-region.c95 int randomInt();
103 vals[index] = randomInt(); in testSymbolicInvalidation()
114 vals[0] = randomInt(); in testConcreteInvalidation()
/external/llvm-project/clang/test/Analysis/
Darray-struct-region.c95 int randomInt();
103 vals[index] = randomInt(); in testSymbolicInvalidation()
114 vals[0] = randomInt(); in testConcreteInvalidation()
/external/angle/util/
Drandom_utils.cpp42 int RNG::randomInt() in randomInt() function in angle::RNG
Drandom_utils.h34 int randomInt();
/external/guava/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java205 int randomInt = random.nextInt(); in testHeapIntact() local
206 mmHeap.offer(randomInt); in testHeapIntact()
207 insertIntoReplica(replica, randomInt); in testHeapIntact()
215 int randomInt = random.nextInt(); in testHeapIntact() local
216 mmHeap.offer(randomInt); in testHeapIntact()
217 insertIntoReplica(replica, randomInt); in testHeapIntact()
/external/guava/android/guava-tests/test/com/google/common/collect/
DMinMaxPriorityQueueTest.java205 int randomInt = random.nextInt(); in testHeapIntact() local
206 mmHeap.offer(randomInt); in testHeapIntact()
207 insertIntoReplica(replica, randomInt); in testHeapIntact()
215 int randomInt = random.nextInt(); in testHeapIntact() local
216 mmHeap.offer(randomInt); in testHeapIntact()
217 insertIntoReplica(replica, randomInt); in testHeapIntact()
/external/angle/src/tests/gl_tests/
DParallelShaderCompileTest.cpp78 ostream << source << "\n// Random string to fool program cache: " << rng.randomInt() in insertRandomString()
DVertexAttributeTest.cpp3194 Vector4 randomVec4 = RandomVec4(rng.randomInt(), 0.0f, 1.0f); in TEST_P()