Lines Matching refs:Shuffle
92 const char kShuffleFlag[] = "shuffle";
147 shuffle_ = GTEST_FLAG(shuffle);
167 GTEST_FLAG(shuffle) = shuffle_;
417 // Performs an in-place shuffle of a range of this Vector's nodes.
420 // shuffle to the end of the Vector.
423 << "Invalid shuffle range start " << begin << ": must be in range [0, "
426 << "Invalid shuffle range finish " << end << ": must be in range ["
429 // Fisher-Yates shuffle, from
438 // Performs an in-place shuffle of this Vector's nodes.
439 void Shuffle(internal::Random* random) {
1016 // Restores the test cases and tests to their order before the first shuffle.