Searched refs:P1 (Results 1 - 25 of 64) sorted by relevance

123

/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
25 typedef std::pair<int, short> const P1; typedef in class:std
26 static_assert((std::tuple_size<P1>::value == 2), "");
29 typedef std::pair<int, short> volatile P1; typedef in class:std
30 static_assert((std::tuple_size<P1>::value == 2), "");
33 typedef std::pair<int, short> const volatile P1; typedef in class:std
34 static_assert((std::tuple_size<P1>::value == 2), "");
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pair.astuple/
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
H A Dtuple_element.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::is_same<std::tuple_element<0, P1>::type, int>::value), "");
23 static_assert((std::is_same<std::tuple_element<1, P1>::type, short>::value), "");
26 typedef std::pair<int*, char> P1; typedef
27 static_assert((std::is_same<std::tuple_element<0, P1>::type, int*>::value), "");
28 static_assert((std::is_same<std::tuple_element<1, P1>::type, char>::value), "");
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pair.astuple/
H A Dtuple_size.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 static_assert((std::tuple_size<P1>::value == 2), "");
25 typedef std::pair<int, short> const P1; typedef in class:std
26 static_assert((std::tuple_size<P1>::value == 2), "");
29 typedef std::pair<int, short> volatile P1; typedef in class:std
30 static_assert((std::tuple_size<P1>::value == 2), "");
33 typedef std::pair<int, short> const volatile P1; typedef in class:std
34 static_assert((std::tuple_size<P1>::value == 2), "");
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.pair/
H A Dcopy_ctor.pass.cpp27 typedef std::pair<int, short> P1; typedef
28 P1 p1(3, 4);
29 P1 p2 = p1;
38 typedef std::pair<int, short> P1; typedef
39 constexpr P1 p1(3, 4);
40 constexpr P1 p2 = p1;
H A Dconst_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
32 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
H A Dswap.pass.cpp31 typedef std::pair<int, short> P1; typedef
32 P1 p1(3, 4);
33 P1 p2(5, 6);
41 typedef std::pair<int, S> P1; typedef
42 P1 p1(3, S(4));
43 P1 p2(5, S(6));
H A Dpiecewise.pass.cpp26 typedef std::pair<int, int*> P1; typedef
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
H A Dassign_const_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.pair/
H A Dcopy_ctor.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2 = p1;
33 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
35 constexpr P1 p2 = p1;
H A Dconst_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
32 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
H A Dswap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
H A Dpiecewise.pass.cpp26 typedef std::pair<int, int*> P1; typedef
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.pair/
H A Dcopy_ctor.pass.cpp27 typedef std::pair<int, short> P1; typedef
28 P1 p1(3, 4);
29 P1 p2 = p1;
38 typedef std::pair<int, short> P1; typedef
39 constexpr P1 p1(3, 4);
40 constexpr P1 p2 = p1;
H A Dconst_pair_U_V.pass.cpp22 typedef std::pair<int, short> P1; typedef
24 P1 p1(3, 4);
32 typedef std::pair<int, short> P1; typedef
34 constexpr P1 p1(3, 4);
H A Dswap.pass.cpp31 typedef std::pair<int, short> P1; typedef
32 P1 p1(3, 4);
33 P1 p2(5, 6);
41 typedef std::pair<int, S> P1; typedef
42 P1 p1(3, S(4));
43 P1 p2(5, S(6));
H A Dpiecewise.pass.cpp26 typedef std::pair<int, int*> P1; typedef
28 typedef std::pair<P1, P2> P3;
31 assert(p3.first == P1(3, nullptr));
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 P1 p1 = std::make_pair(3, 4);
29 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4);
35 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
36 P1 p1 = std::make_pair(nullptr, 4);
44 typedef std::pair<int, short> P1; typedef
45 constexpr P1 p1 = std::make_pair(3, 4);
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
/prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 P1 p1 = std::make_pair(3, 4);
29 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4);
35 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
36 P1 p1 = std::make_pair(nullptr, 4);
44 typedef std::pair<int, short> P1; typedef
45 constexpr P1 p1 = std::make_pair(3, 4);
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/utility/pairs/pairs.spec/
H A Dmake_pair.pass.cpp21 typedef std::pair<int, short> P1; typedef
22 P1 p1 = std::make_pair(3, 4);
29 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
30 P1 p1 = std::make_pair(std::unique_ptr<int>(new int(3)), 4);
35 typedef std::pair<std::unique_ptr<int>, short> P1; typedef
36 P1 p1 = std::make_pair(nullptr, 4);
44 typedef std::pair<int, short> P1; typedef
45 constexpr P1 p1 = std::make_pair(3, 4);
H A Dnon_member_swap.pass.cpp22 typedef std::pair<int, short> P1; typedef
23 P1 p1(3, 4);
24 P1 p2(5, 6);
/prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.public/
H A Dis_equal.pass.cpp44 auto& P1 = R1.getController(); local
52 assert(P1.checkIsEqualCalledEq(1));
57 assert(P1.checkIsEqualCalledEq(1));
61 auto& P1 = R1.getController(); local
69 assert(P1.checkIsEqualCalledEq(1));
74 assert(P1.checkIsEqualCalledEq(1));
78 auto& P1 = R1.getController(); local
86 assert(P1.checkIsEqualCalledEq(1));
91 assert(P1.checkIsEqualCalledEq(1));
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource/memory.resource.public/
H A Dis_equal.pass.cpp44 auto& P1 = R1.getController(); local
52 assert(P1.checkIsEqualCalledEq(1));
57 assert(P1.checkIsEqualCalledEq(1));
61 auto& P1 = R1.getController(); local
69 assert(P1.checkIsEqualCalledEq(1));
74 assert(P1.checkIsEqualCalledEq(1));
78 auto& P1 = R1.getController(); local
86 assert(P1.checkIsEqualCalledEq(1));
91 assert(P1.checkIsEqualCalledEq(1));

Completed in 371 milliseconds

123