Home | History | Annotate | Download | only in src

Lines Matching refs:Shuffle

99 const char kShuffleFlag[] = "shuffle";
178 shuffle_ = GTEST_FLAG(shuffle);
199 GTEST_FLAG(shuffle) = shuffle_;
306 // Performs an in-place shuffle of a range of the vector's elements.
309 // shuffle to the end of the vector.
315 << "Invalid shuffle range start " << begin << ": must be in range [0, "
318 << "Invalid shuffle range finish " << end << ": must be in range ["
321 // Fisher-Yates shuffle, from
330 // Performs an in-place shuffle of the vector's elements.
332 inline void Shuffle(internal::Random* random, std::vector<E>* v) {
807 // Restores the test cases and tests to their order before the first shuffle.