Searched refs:c2 (Results 101 - 125 of 1210) sorted by relevance

1234567891011>>

/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.special/
H A Dmove.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::move(c1.cbegin(), c1.cend(), c2.begin()) == c2.end());
56 assert(c1 == c2);
57 assert(std::move(c2.cbegin(), c2.cend(), c1.begin()) == c1.end());
58 assert(c1 == c2);
59 assert(std::move(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end()));
60 assert(c1 == c2);
[all...]
H A Dmove_backward.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
56 assert(c1 == c2);
57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
58 assert(c1 == c2);
59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
60 assert(c1 == c2);
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.special/
H A Dcopy.pass.cpp55 C c2 = make<C>(N); local
56 assert(std::copy(c1.cbegin(), c1.cend(), c2.begin()) == c2.end());
57 assert(c1 == c2);
58 assert(std::copy(c2.cbegin(), c2.cend(), c1.begin()) == c1.end());
59 assert(c1 == c2);
60 assert(std::copy(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end()));
61 assert(c1 == c2);
[all...]
H A Dcopy_backward.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::copy_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
56 assert(c1 == c2);
57 assert(std::copy_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
58 assert(c1 == c2);
59 assert(std::copy_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
60 assert(c1 == c2);
[all...]
H A Dmove.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::move(c1.cbegin(), c1.cend(), c2.begin()) == c2.end());
56 assert(c1 == c2);
57 assert(std::move(c2.cbegin(), c2.cend(), c1.begin()) == c1.end());
58 assert(c1 == c2);
59 assert(std::move(c1.cbegin(), c1.cend(), RAI(c2.begin())) == RAI(c2.end()));
60 assert(c1 == c2);
[all...]
H A Dmove_backward.pass.cpp54 C c2 = make<C>(N); local
55 assert(std::move_backward(c1.cbegin(), c1.cend(), c2.end()) == c2.begin());
56 assert(c1 == c2);
57 assert(std::move_backward(c2.cbegin(), c2.cend(), c1.end()) == c1.begin());
58 assert(c1 == c2);
59 assert(std::move_backward(c1.cbegin(), c1.cend(), RAI(c2.end())) == RAI(c2.begin()));
60 assert(c1 == c2);
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp102 C c1, c2; local
103 static_assert(noexcept(swap(c1, c2)), "");
107 C c1, c2; local
108 static_assert(noexcept(swap(c1, c2)), "");
112 C c1, c2; local
113 static_assert(noexcept(swap(c1, c2)), "");
117 C c1, c2; local
118 static_assert(!noexcept(swap(c1, c2)), "");
124 C c1, c2; local
125 static_assert(!noexcept(swap(c1, c2)), "");
129 C c1, c2; local
134 C c1, c2; local
139 C c1, c2; local
145 C c1, c2; local
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp102 C c1, c2; local
103 static_assert(noexcept(swap(c1, c2)), "");
107 C c1, c2; local
108 static_assert(noexcept(swap(c1, c2)), "");
112 C c1, c2; local
113 static_assert(noexcept(swap(c1, c2)), "");
117 C c1, c2; local
118 static_assert(!noexcept(swap(c1, c2)), "");
124 C c1, c2; local
125 static_assert(!noexcept(swap(c1, c2)), "");
129 C c1, c2; local
134 C c1, c2; local
139 C c1, c2; local
145 C c1, c2; local
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp101 C c1, c2; local
102 static_assert(noexcept(swap(c1, c2)), "");
106 C c1, c2; local
107 static_assert(noexcept(swap(c1, c2)), "");
111 C c1, c2; local
112 static_assert(noexcept(swap(c1, c2)), "");
116 C c1, c2; local
117 static_assert(!noexcept(swap(c1, c2)), "");
123 C c1, c2; local
124 static_assert(!noexcept(swap(c1, c2)), "");
128 C c1, c2; local
133 C c1, c2; local
138 C c1, c2; local
144 C c1, c2; local
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp101 C c1, c2; local
102 static_assert(noexcept(swap(c1, c2)), "");
106 C c1, c2; local
107 static_assert(noexcept(swap(c1, c2)), "");
111 C c1, c2; local
112 static_assert(noexcept(swap(c1, c2)), "");
116 C c1, c2; local
117 static_assert(!noexcept(swap(c1, c2)), "");
123 C c1, c2; local
124 static_assert(!noexcept(swap(c1, c2)), "");
128 C c1, c2; local
133 C c1, c2; local
138 C c1, c2; local
144 C c1, c2; local
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/map/map.special/
H A Dswap_noexcept.pass.cpp102 C c1, c2; local
103 static_assert(noexcept(swap(c1, c2)), "");
107 C c1, c2; local
108 static_assert(noexcept(swap(c1, c2)), "");
112 C c1, c2; local
113 static_assert(noexcept(swap(c1, c2)), "");
117 C c1, c2; local
118 static_assert(!noexcept(swap(c1, c2)), "");
124 C c1, c2; local
125 static_assert(!noexcept(swap(c1, c2)), "");
129 C c1, c2; local
134 C c1, c2; local
139 C c1, c2; local
145 C c1, c2; local
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multimap/multimap.special/
H A Dswap_noexcept.pass.cpp102 C c1, c2; local
103 static_assert(noexcept(swap(c1, c2)), "");
107 C c1, c2; local
108 static_assert(noexcept(swap(c1, c2)), "");
112 C c1, c2; local
113 static_assert(noexcept(swap(c1, c2)), "");
117 C c1, c2; local
118 static_assert(!noexcept(swap(c1, c2)), "");
124 C c1, c2; local
125 static_assert(!noexcept(swap(c1, c2)), "");
129 C c1, c2; local
134 C c1, c2; local
139 C c1, c2; local
145 C c1, c2; local
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/multiset/multiset.special/
H A Dswap_noexcept.pass.cpp101 C c1, c2; local
102 static_assert(noexcept(swap(c1, c2)), "");
106 C c1, c2; local
107 static_assert(noexcept(swap(c1, c2)), "");
111 C c1, c2; local
112 static_assert(noexcept(swap(c1, c2)), "");
116 C c1, c2; local
117 static_assert(!noexcept(swap(c1, c2)), "");
123 C c1, c2; local
124 static_assert(!noexcept(swap(c1, c2)), "");
128 C c1, c2; local
133 C c1, c2; local
138 C c1, c2; local
144 C c1, c2; local
[all...]
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/associative/set/set.special/
H A Dswap_noexcept.pass.cpp101 C c1, c2; local
102 static_assert(noexcept(swap(c1, c2)), "");
106 C c1, c2; local
107 static_assert(noexcept(swap(c1, c2)), "");
111 C c1, c2; local
112 static_assert(noexcept(swap(c1, c2)), "");
116 C c1, c2; local
117 static_assert(!noexcept(swap(c1, c2)), "");
123 C c1, c2; local
124 static_assert(!noexcept(swap(c1, c2)), "");
128 C c1, c2; local
133 C c1, c2; local
138 C c1, c2; local
144 C c1, c2; local
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.map/unord.map.swap/
H A Dswap_noexcept.pass.cpp46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multimap/unord.multimap.swap/
H A Dswap_noexcept.pass.cpp46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.multiset/unord.multiset.swap/
H A Dswap_noexcept.pass.cpp46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
[all...]
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/unord/unord.set/unord.set.swap/
H A Dswap_noexcept.pass.cpp46 C c1, c2; local
47 static_assert(noexcept(swap(c1, c2)), "");
52 C c1, c2; local
53 static_assert(noexcept(swap(c1, c2)), "");
58 C c1, c2; local
59 static_assert(noexcept(swap(c1, c2)), "");
63 C c1, c2; local
64 static_assert(!noexcept(swap(c1, c2)), "");
69 C c1, c2; local
70 static_assert(!noexcept(swap(c1, c2)), "");
[all...]
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.spec/
H A Drelational.pass.cpp42 C c2; local
44 c2.push_front(i);
46 assert(c1 < c2);
48 assert(c1 <= c2);
50 assert(c1 >= c2);
52 assert(c1 > c2);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/forwardlist/forwardlist.spec/
H A Drelational.pass.cpp42 C c2; local
44 c2.push_front(i);
46 assert(c1 < c2);
48 assert(c1 <= c2);
50 assert(c1 >= c2);
52 assert(c1 > c2);
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/forwardlist/forwardlist.spec/
H A Drelational.pass.cpp42 C c2; local
44 c2.push_front(i);
46 assert(c1 < c2);
48 assert(c1 <= c2);
50 assert(c1 >= c2);
52 assert(c1 > c2);
/prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
H A Dtest_incomplete.py21 c2 = cell()
22 c2.name = "bar"
24 c1.next = pointer(c2)
25 c2.next = pointer(c1)
/prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
H A Dtest_incomplete.py21 c2 = cell()
22 c2.name = "bar"
24 c1.next = pointer(c2)
25 c2.next = pointer(c1)
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/libcxx/containers/sequences/vector/
H A Ddb_iterators_2.pass.cpp32 C c2; local
33 bool b = c1.begin() < c2.begin();
41 C c2;
42 bool b = c1.begin() < c2.begin();
H A Ddb_iterators_3.pass.cpp32 C c2; local
33 int i = c1.begin() - c2.begin();
41 C c2; local
42 int i = c1.begin() - c2.begin();

Completed in 686 milliseconds

1234567891011>>