Home | History | Annotate | Download | only in src

Lines Matching refs:Shuffle

94 const char kShuffleFlag[] = "shuffle";
171 shuffle_ = GTEST_FLAG(shuffle);
194 GTEST_FLAG(shuffle) = shuffle_;
300 // Performs an in-place shuffle of a range of the vector's elements.
303 // shuffle to the end of the vector.
309 << "Invalid shuffle range start " << begin << ": must be in range [0, "
312 << "Invalid shuffle range finish " << end << ": must be in range ["
315 // Fisher-Yates shuffle, from
324 // Performs an in-place shuffle of the vector's elements.
326 inline void Shuffle(internal::Random* random, std::vector<E>* v) {
783 // Restores the test cases and tests to their order before the first shuffle.