Searched defs:fwl (Results 1 – 1 of 1) sorted by relevance
/llvm-project/libcxx/test/std/containers/sequences/forwardlist/forwardlist.cons/ |
H A D | deduct.pass.cpp | 41 std::forward_list fwl(std::begin(arr), std::end(arr)); in main() local 66 std::forward_list fwl(1, A{}); // deque (size_type, T) in main() local 73 std::forward_list fwl(1, A{}, test_allocator<A>()); // deque (size_type, T, allocator) in main() local 80 std::forward_list fwl{1U, 2U, 3U, 4U, 5U}; // deque(initializer-list) in main() local 100 std::forward_list fwl(source); // deque(deque &) in main() local 112 std::forward_list fwl(source, Alloc(2)); in main() local 118 std::forward_list fwl(source, ConvertibleToAlloc(2)); in main() local 124 std::forward_list fwl(std::move(source), Alloc(2)); in main() local 130 std::forward_list fwl(std::move(source), ConvertibleToAlloc(2)); in main() local
|