HomeSort by relevance Sort by last modified time
    Searched refs:forward_list (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
default_recursive.pass.cpp 10 // <forward_list>
12 // class forward_list
14 // forward_list();
16 #include <forward_list>
20 std::forward_list<X> q;
default.pass.cpp 10 // <forward_list>
12 // forward_list();
14 #include <forward_list>
23 typedef std::forward_list<T> C;
30 typedef std::forward_list<T, min_allocator<T>> C;
36 typedef std::forward_list<T> C;
default_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list()
17 #include <forward_list>
34 typedef std::forward_list<MoveOnly> C;
38 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
move_assign_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list& operator=(forward_list&& c)
19 #include <forward_list>
36 typedef std::forward_list<MoveOnly> C;
40 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
44 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
48 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
move_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list(forward_list&&)
17 #include <forward_list>
34 typedef std::forward_list<MoveOnly> C;
38 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
alloc.fail.cpp 10 // <forward_list>
12 // explicit forward_list(const allocator_type& a);
14 #include <forward_list>
25 typedef std::forward_list<T, A> C;
dtor_noexcept.pass.cpp 10 // <forward_list>
12 // ~forward_list() // implied noexcept;
14 #include <forward_list>
36 typedef std::forward_list<MoveOnly> C;
40 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
44 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
48 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
alloc.pass.cpp 10 // <forward_list>
12 // explicit forward_list(const allocator_type& a);
14 #include <forward_list>
26 typedef std::forward_list<T, A> C;
35 typedef std::forward_list<T, A> C;
size.fail.cpp 10 // <forward_list>
12 // explicit forward_list(size_type n);
14 #include <forward_list>
23 typedef std::forward_list<T> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.cons/
default_recursive.pass.cpp 10 // <forward_list>
12 // class forward_list
14 // forward_list();
16 #include <forward_list>
20 std::forward_list<X> q;
default.pass.cpp 10 // <forward_list>
12 // forward_list();
14 #include <forward_list>
23 typedef std::forward_list<T> C;
30 typedef std::forward_list<T, min_allocator<T>> C;
36 typedef std::forward_list<T> C;
default_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list()
17 #include <forward_list>
34 typedef std::forward_list<MoveOnly> C;
38 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
move_assign_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list& operator=(forward_list&& c)
19 #include <forward_list>
36 typedef std::forward_list<MoveOnly> C;
40 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
44 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
48 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
move_noexcept.pass.cpp 10 // <forward_list>
12 // forward_list(forward_list&&)
17 #include <forward_list>
34 typedef std::forward_list<MoveOnly> C;
38 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
42 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
46 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
alloc.fail.cpp 10 // <forward_list>
12 // explicit forward_list(const allocator_type& a);
14 #include <forward_list>
25 typedef std::forward_list<T, A> C;
dtor_noexcept.pass.cpp 10 // <forward_list>
12 // ~forward_list() // implied noexcept;
14 #include <forward_list>
36 typedef std::forward_list<MoveOnly> C;
40 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
44 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
48 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
alloc.pass.cpp 10 // <forward_list>
12 // explicit forward_list(const allocator_type& a);
14 #include <forward_list>
26 typedef std::forward_list<T, A> C;
35 typedef std::forward_list<T, A> C;
  /external/libcxx/test/containers/sequences/forwardlist/
version.pass.cpp 10 // <forward_list>
12 #include <forward_list>
types.pass.cpp 10 // <forward_list>
13 // class forward_list
28 #include <forward_list>
35 static_assert((std::is_same<std::forward_list<char>::value_type, char>::value), "");
36 static_assert((std::is_same<std::forward_list<char>::allocator_type, std::allocator<char> >::value), "");
37 static_assert((std::is_same<std::forward_list<char>::reference, char&>::value), "");
38 static_assert((std::is_same<std::forward_list<char>::const_reference, const char&>::value), "");
39 static_assert((std::is_same<std::forward_list<char>::pointer, char*>::value), "");
40 static_assert((std::is_same<std::forward_list<char>::const_pointer, const char*>::value), "");
41 static_assert((std::is_same<std::forward_list<char>::size_type, std::size_t>::value), "")
    [all...]
max_size.pass.cpp 10 // <forward_list>
14 #include <forward_list>
23 typedef std::forward_list<T> C;
30 typedef std::forward_list<T, min_allocator<T>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/
version.pass.cpp 10 // <forward_list>
12 #include <forward_list>
types.pass.cpp 10 // <forward_list>
13 // class forward_list
28 #include <forward_list>
35 static_assert((std::is_same<std::forward_list<char>::value_type, char>::value), "");
36 static_assert((std::is_same<std::forward_list<char>::allocator_type, std::allocator<char> >::value), "");
37 static_assert((std::is_same<std::forward_list<char>::reference, char&>::value), "");
38 static_assert((std::is_same<std::forward_list<char>::const_reference, const char&>::value), "");
39 static_assert((std::is_same<std::forward_list<char>::pointer, char*>::value), "");
40 static_assert((std::is_same<std::forward_list<char>::const_pointer, const char*>::value), "");
41 static_assert((std::is_same<std::forward_list<char>::size_type, std::size_t>::value), "")
    [all...]
max_size.pass.cpp 10 // <forward_list>
14 #include <forward_list>
23 typedef std::forward_list<T> C;
30 typedef std::forward_list<T, min_allocator<T>> C;
  /external/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
swap_noexcept.pass.cpp 10 // <forward_list>
12 // void swap(forward_list& c)
18 #include <forward_list>
40 typedef std::forward_list<MoveOnly> C;
45 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
50 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
55 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
swap_noexcept.pass.cpp 10 // <forward_list>
12 // void swap(forward_list& c)
18 #include <forward_list>
40 typedef std::forward_list<MoveOnly> C;
45 typedef std::forward_list<MoveOnly, test_allocator<MoveOnly>> C;
50 typedef std::forward_list<MoveOnly, other_allocator<MoveOnly>> C;
55 typedef std::forward_list<MoveOnly, some_alloc<MoveOnly>> C;

Completed in 133 milliseconds

1 2 3 4 5 6 7 8