HomeSort by relevance Sort by last modified time
    Searched defs:testN (Results 1 - 25 of 44) sorted by null

1 2

  /external/libcxx/test/std/containers/sequences/deque/deque.capacity/
resize_size.pass.cpp 59 testN(int start, int N, int M)
74 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]);
resize_size_value.pass.cpp 59 testN(int start, int N, int M)
74 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]);
shrink_to_fit.pass.cpp 52 testN(int start, int N)
66 testN<std::deque<int> >(rng[i], rng[j]);
74 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
  /external/libcxx/test/std/containers/sequences/deque/deque.cons/
assign_iter_iter.pass.cpp 55 testN(int start, int N, int M)
95 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
105 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]);
assign_size_value.pass.cpp 57 testN(int start, int N, int M)
73 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
82 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]);
  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
emplace.pass.cpp 60 testN(int start, int N)
100 testN<std::deque<Emplaceable> >(rng[i], rng[j]);
108 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]);
emplace_back.pass.cpp 59 testN(int start, int N)
75 testN<std::deque<Emplaceable> >(rng[i], rng[j]);
83 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]);
emplace_front.pass.cpp 59 testN(int start, int N)
75 testN<std::deque<Emplaceable> >(rng[i], rng[j]);
83 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]);
erase_iter_iter.pass.cpp 64 testN(int start, int N)
85 testN<std::deque<int> >(rng[i], rng[j]);
93 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
insert_rvalue.pass.cpp 66 testN(int start, int N)
106 testN<std::deque<MoveOnly> >(rng[i], rng[j]);
114 testN<std::deque<MoveOnly, min_allocator<MoveOnly>> >(rng[i], rng[j]);
pop_back.pass.cpp 57 testN(int start, int N)
73 testN<std::deque<int> >(rng[i], rng[j]);
81 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
pop_front.pass.cpp 57 testN(int start, int N)
73 testN<std::deque<int> >(rng[i], rng[j]);
81 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
push_front.pass.cpp 59 testN(int start, int N)
72 testN<std::deque<int> >(rng[i], rng[j]);
80 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
push_front_rvalue.pass.cpp 62 testN(int start, int N)
78 testN<std::deque<MoveOnly> >(rng[i], rng[j]);
86 testN<std::deque<MoveOnly, min_allocator<MoveOnly>> >(rng[i], rng[j]);
  /external/libcxx/test/std/containers/sequences/deque/deque.special/
copy.pass.cpp 47 void testN(int start, int N)
77 testN<std::deque<int> >(rng[i], rng[j]);
85 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
copy_backward.pass.cpp 47 void testN(int start, int N)
76 testN<std::deque<int> >(rng[i], rng[j]);
84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
move.pass.cpp 47 void testN(int start, int N)
76 testN<std::deque<int> >(rng[i], rng[j]);
84 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
move_backward.pass.cpp 47 void testN(int start, int N)
76 testN<std::deque<int> >(rng[i], rng[j]);
84 testN<std::deque<int, min_allocator<int> > >(rng[i], rng[j]);
swap.pass.cpp 43 void testN(int start, int N, int M)
62 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
95 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.capacity/
resize_size.pass.cpp 59 testN(int start, int N, int M)
74 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]);
resize_size_value.pass.cpp 59 testN(int start, int N, int M)
74 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
83 testN<std::deque<int, min_allocator<int>>>(rng[i], rng[j], rng[k]);
shrink_to_fit.pass.cpp 52 testN(int start, int N)
66 testN<std::deque<int> >(rng[i], rng[j]);
74 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
assign_iter_iter.pass.cpp 55 testN(int start, int N, int M)
95 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
105 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]);
assign_size_value.pass.cpp 57 testN(int start, int N, int M)
73 testN<std::deque<int> >(rng[i], rng[j], rng[k]);
82 testN<std::deque<int, min_allocator<int>> >(rng[i], rng[j], rng[k]);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.modifiers/
emplace.pass.cpp 60 testN(int start, int N)
100 testN<std::deque<Emplaceable> >(rng[i], rng[j]);
108 testN<std::deque<Emplaceable, min_allocator<Emplaceable>> >(rng[i], rng[j]);

Completed in 1186 milliseconds

1 2