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

1 2 3 4

  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.cons/
default.pass.cpp 10 // <forward_list>
12 // forward_list();
14 #include <forward_list>
21 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;
alloc.pass.cpp 10 // <forward_list>
12 // explicit forward_list(const allocator_type& a);
14 #include <forward_list>
25 typedef std::forward_list<T, A> C;
init.pass.cpp 10 // <forward_list>
12 // forward_list(initializer_list<value_type> il);
14 #include <forward_list>
22 typedef std::forward_list<T> 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;
init_alloc.pass.cpp 10 // <forward_list>
12 // forward_list(initializer_list<value_type> il, const allocator_type& a);
14 #include <forward_list>
25 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;
size.pass.cpp 10 // <forward_list>
12 // explicit forward_list(size_type n);
14 #include <forward_list>
23 typedef std::forward_list<T> C;
size_value.pass.cpp 10 // <forward_list>
12 // forward_list(size_type n, const value_type& v);
14 #include <forward_list>
21 typedef std::forward_list<T> C;
assign_init.pass.cpp 10 // <forward_list>
14 #include <forward_list>
23 typedef std::forward_list<T> C;
34 typedef std::forward_list<T> C;
assign_op_init.pass.cpp 10 // <forward_list>
12 // forward_list& operator=(initializer_list<value_type> il);
14 #include <forward_list>
23 typedef std::forward_list<T> C;
34 typedef std::forward_list<T> C;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/
max_size.pass.cpp 10 // <forward_list>
14 #include <forward_list>
21 typedef std::forward_list<T> C;
version.pass.cpp 10 // <forward_list>
12 #include <forward_list>
types.pass.cpp 10 // <forward_list>
13 // class forward_list
28 #include <forward_list>
33 static_assert((std::is_same<std::forward_list<char>::value_type, char>::value), "");
34 static_assert((std::is_same<std::forward_list<char>::allocator_type, std::allocator<char> >::value), "");
35 static_assert((std::is_same<std::forward_list<char>::reference, char&>::value), "");
36 static_assert((std::is_same<std::forward_list<char>::const_reference, const char&>::value), "");
37 static_assert((std::is_same<std::forward_list<char>::pointer, char*>::value), "");
38 static_assert((std::is_same<std::forward_list<char>::const_pointer, const char*>::value), "");
39 static_assert((std::is_same<std::forward_list<char>::size_type, std::size_t>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/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++/test/containers/sequences/forwardlist/forwardlist.access/
front.pass.cpp 10 // <forward_list>
15 #include <forward_list>
23 typedef std::forward_list<T> C;
33 typedef std::forward_list<T> C;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.modifiers/
clear.pass.cpp 10 // <forward_list>
14 #include <forward_list>
23 typedef std::forward_list<T> C;
30 typedef std::forward_list<T> C;
pop_front.pass.cpp 10 // <forward_list>
14 #include <forward_list>
23 typedef std::forward_list<T> C;
24 typedef std::forward_list<T> C;
37 typedef std::forward_list<T> C;
emplace_front.pass.cpp 10 // <forward_list>
14 #include <forward_list>
24 typedef std::forward_list<T> C;
push_front_const.pass.cpp 10 // <forward_list>
14 #include <forward_list>
21 typedef std::forward_list<T> C;
push_front_rv.pass.cpp 10 // <forward_list>
14 #include <forward_list>
24 typedef std::forward_list<T> C;
  /ndk/sources/cxx-stl/llvm-libc++/test/containers/sequences/forwardlist/forwardlist.iter/
before_begin.pass.cpp 10 // <forward_list>
16 #include <forward_list>
24 typedef std::forward_list<T> C;
31 typedef std::forward_list<T> C;
38 typedef std::forward_list<T> C;
46 typedef std::forward_list<T> C;
55 typedef std::forward_list<T> C;

Completed in 294 milliseconds

1 2 3 4