Home | History | Annotate | Download | only in gtest

Lines Matching defs:Random

7631 // A simple Linear Congruential Generator for generating random
7634 // code). Unlike rand_r(), it's portable. An LCG isn't very random,
7636 class GTEST_API_ Random {
7640 explicit Random(UInt32 seed) : state_(seed) {}
7644 // Generates a random number from [0, range). Crashes if 'range' is
7650 GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);
17531 // This flag specifies the random number seed.
18306 void ShuffleTests(internal::Random* random);
18561 // Returns the random seed used at the start of the current test run.