Home | History | Annotate | Download | only in src

Lines Matching refs:Shuffle

94 const char kShuffleFlag[] = "shuffle";
166 shuffle_ = GTEST_FLAG(shuffle);
186 GTEST_FLAG(shuffle) = shuffle_;
286 // Performs an in-place shuffle of a range of the vector's elements.
289 // shuffle to the end of the vector.
295 << "Invalid shuffle range start " << begin << ": must be in range [0, "
298 << "Invalid shuffle range finish " << end << ": must be in range ["
301 // Fisher-Yates shuffle, from
310 // Performs an in-place shuffle of the vector's elements.
312 inline void Shuffle(internal::Random* random, std::vector<E>* v) {
838 // Restores the test cases and tests to their order before the first shuffle.