Home | History | Annotate | Download | only in src

Lines Matching defs:Shuffle

92 const char kShuffleFlag[] = "shuffle";
146 shuffle_ = GTEST_FLAG(shuffle);
165 GTEST_FLAG(shuffle) = shuffle_;
413 // Performs an in-place shuffle of a range of this Vector's nodes.
416 // shuffle to the end of the Vector.
419 << "Invalid shuffle range start " << begin << ": must be in range [0, "
422 << "Invalid shuffle range finish " << end << ": must be in range ["
425 // Fisher-Yates shuffle, from
434 // Performs an in-place shuffle of this Vector's nodes.
435 void Shuffle(internal::Random* random) {
1012 // Restores the test cases and tests to their order before the first shuffle.