| /llvm-project-15.0.7/clang-tools-extra/test/clang-tidy/checkers/modernize/ |
| H A D | replace-random-shuffle.cpp | 19 void random_shuffle(FwIt begin, FwIt end); 22 void random_shuffle(FwIt begin, FwIt end, randomFunc& randomfunc); 36 std::random_shuffle(vec.begin(), vec.end()); in main() 42 random_shuffle(vec.begin(), vec.end()); in main() 46 std::random_shuffle(vec.begin(), vec.end(), myrandom); in main() 50 random_shuffle(vec.begin(), vec.end(), myrandom); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/algorithms/alg.modifying.operations/alg.random.shuffle/ |
| H A D | random_shuffle.pass.cpp | 30 std::random_shuffle(Iter(empty), Iter(empty)); in test_with_iterator() 36 std::random_shuffle(Iter(shuffled), Iter(shuffled+size)); in test_with_iterator() 39 std::random_shuffle(Iter(shuffled), Iter(shuffled+size)); in test_with_iterator() 51 std::random_shuffle(ia, ia+sa); in main() 55 std::random_shuffle(ia, ia+sa); in main()
|
| H A D | random_shuffle_rand.pass.cpp | 47 std::random_shuffle(ia, ia+sa, r); in test_with_iterator() 51 std::random_shuffle(ia, ia+sa, r); in test_with_iterator()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/modernize/ |
| H A D | replace-random-shuffle.rst | 6 …k will find occurrences of ``std::random_shuffle`` and replace it with ``std::shuffle``. In C++17 … 15 std::random_shuffle(vec.begin(), vec.end()); 18 std::random_shuffle(vec.begin(), vec.end(), randomFunc);
|
| /llvm-project-15.0.7/libcxx/test/libcxx/algorithms/alg.modifying.operations/alg.random.shuffle/ |
| H A D | random_shuffle.depr_in_cxx14.verify.cpp | 41 std::random_shuffle(&v[0], &v[1]); // expected-warning {{'random_shuffle<int *>' is deprecated}} in main() 43 …std::random_shuffle(&v[0], &v[1], r); // expected-warning {{'random_shuffle<int *, gen &>' is depr… in main()
|
| H A D | random_shuffle.cxx1z.pass.cpp | 45 std::random_shuffle(v.begin(), v.end()); in main() 47 std::random_shuffle(v.begin(), v.end(), r); in main()
|
| /llvm-project-15.0.7/libcxx/include/__algorithm/ |
| H A D | shuffle.h | 97 random_shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last) in random_shuffle() function 118 random_shuffle(_RandomAccessIterator __first, _RandomAccessIterator __last, in random_shuffle() function
|
| /llvm-project-15.0.7/llvm/utils/gn/secondary/libcxx/src/ |
| H A D | BUILD.gn | 157 "random_shuffle.cpp",
|
| /llvm-project-15.0.7/libcxx/src/ |
| H A D | CMakeLists.txt | 38 random_shuffle.cpp
|
| /llvm-project-15.0.7/libcxx/docs/Status/ |
| H A D | Cxx17Papers.csv | 5 "`N4190 <https://wg21.link/n4190>`__","LWG","Removing auto_ptr, random_shuffle(), And Old <function…
|
| /llvm-project-15.0.7/libcxx/docs/ |
| H A D | ReleaseNotes.rst | 54 - N4190 - Removing ``auto_ptr``, ``random_shuffle()``, And Old ``<functional>`` Stuff
|
| H A D | UsingLibcxx.rst | 289 This macro is used to re-enable the `random_shuffle` algorithm.
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | algorithm | 1346 …random_shuffle(RandomAccessIterator first, RandomAccessIterator last); // deprecated in C++14, rem… 1350 random_shuffle(RandomAccessIterator first, RandomAccessIterator last,
|
| /llvm-project-15.0.7/clang/include/clang/Tooling/Inclusions/ |
| H A D | StdSymbolMap.inc | 916 SYMBOL(random_shuffle, std::, <algorithm>)
|