Home | History | Annotate | Download | only in src

Lines Matching refs:Shuffle

94 const char kShuffleFlag[] = "shuffle";
173 shuffle_ = GTEST_FLAG(shuffle);
194 GTEST_FLAG(shuffle) = shuffle_;
304 // Performs an in-place shuffle of a range of the vector's elements.
307 // shuffle to the end of the vector.
313 << "Invalid shuffle range start " << begin << ": must be in range [0, "
316 << "Invalid shuffle range finish " << end << ": must be in range ["
319 // Fisher-Yates shuffle, from
328 // Performs an in-place shuffle of the vector's elements.
330 inline void Shuffle(internal::Random* random, std::vector<E>* v) {
794 // Restores the test cases and tests to their order before the first shuffle.