Home | History | Annotate | Download | only in src

Lines Matching refs:shuffle

94 const char kShuffleFlag[] = "shuffle";
167 shuffle_ = GTEST_FLAG(shuffle);
188 GTEST_FLAG(shuffle) = shuffle_;
290 // Performs an in-place shuffle of a range of the vector's elements.
293 // shuffle to the end of the vector.
299 << "Invalid shuffle range start " << begin << ": must be in range [0, "
302 << "Invalid shuffle range finish " << end << ": must be in range ["
305 // Fisher-Yates shuffle, from
314 // Performs an in-place shuffle of the vector's elements.
316 inline void Shuffle(internal::Random* random, std::vector<E>* v) {
773 // Restores the test cases and tests to their order before the first shuffle.