Lines Matching defs:Random
7632 // A simple Linear Congruential Generator for generating random
7635 // code). Unlike rand_r(), it's portable. An LCG isn't very random,
7637 class GTEST_API_ Random {
7641 explicit Random(UInt32 seed) : state_(seed) {}
7645 // Generates a random number from [0, range). Crashes if 'range' is
7651 GTEST_DISALLOW_COPY_AND_ASSIGN_(Random);
17532 // This flag specifies the random number seed.
18307 void ShuffleTests(internal::Random* random);
18562 // Returns the random seed used at the start of the current test run.