/external/libcxx/test/std/utilities/tuple/tuple.tuple/ |
alloc_first.h | 17 struct alloc_first struct 25 alloc_first() : data_(0) {} function in struct:alloc_first 26 alloc_first(int d) : data_(d) {} function in struct:alloc_first 27 alloc_first(std::allocator_arg_t, const A1<int>& a) function in struct:alloc_first 34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d) function in struct:alloc_first 41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d) function in struct:alloc_first 48 ~alloc_first() {data_ = -1;} 50 friend bool operator==(const alloc_first& x, const alloc_first& y [all...] |
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/ |
alloc_first.h | 17 struct alloc_first struct 25 alloc_first() : data_(0) {} function in struct:alloc_first 26 alloc_first(int d) : data_(d) {} function in struct:alloc_first 27 alloc_first(std::allocator_arg_t, const A1<int>& a) function in struct:alloc_first 34 alloc_first(std::allocator_arg_t, const A1<int>& a, int d) function in struct:alloc_first 41 alloc_first(std::allocator_arg_t, const A1<int>& a, const alloc_first& d) function in struct:alloc_first 48 ~alloc_first() {data_ = -1;} 50 friend bool operator==(const alloc_first& x, const alloc_first& y [all...] |
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
alloc_const_Types.pass.cpp | 23 #include "../alloc_first.h" 33 assert(!alloc_first::allocator_constructed); 34 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3)); 35 assert(alloc_first::allocator_constructed); 36 assert(std::get<0>(t) == alloc_first(3)); 45 alloc_first::allocator_constructed = false; 46 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5), 47 10, alloc_first(15)); 49 assert(alloc_first::allocator_constructed) [all...] |
alloc.pass.cpp | 24 #include "../alloc_first.h" 41 assert(!alloc_first::allocator_constructed); 42 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5)); 43 assert(alloc_first::allocator_constructed); 44 assert(std::get<0>(t) == alloc_first()); 53 alloc_first::allocator_constructed = false; 54 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5)); 56 assert(alloc_first::allocator_constructed); 57 assert(std::get<1>(t) == alloc_first()); 60 alloc_first::allocator_constructed = false [all...] |
alloc_convert_copy.pass.cpp | 23 #include "../alloc_first.h" 37 typedef std::tuple<alloc_first> T1; 39 alloc_first::allocator_constructed = false; 41 assert(alloc_first::allocator_constructed); 46 typedef std::tuple<alloc_first, alloc_last> T1; 48 alloc_first::allocator_constructed = false; 51 assert(alloc_first::allocator_constructed); 58 typedef std::tuple<int, alloc_first, alloc_last> T1; 60 alloc_first::allocator_constructed = false; 63 assert(alloc_first::allocator_constructed) [all...] |
alloc_copy.pass.cpp | 23 #include "../alloc_first.h" 40 typedef std::tuple<alloc_first> T; 42 alloc_first::allocator_constructed = false; 44 assert(alloc_first::allocator_constructed); 56 typedef std::tuple<alloc_first, alloc_last> T; 58 alloc_first::allocator_constructed = false; 61 assert(alloc_first::allocator_constructed); 67 typedef std::tuple<int, alloc_first, alloc_last> T; 69 alloc_first::allocator_constructed = false; 72 assert(alloc_first::allocator_constructed) [all...] |
alloc_move.pass.cpp | 24 #include "../alloc_first.h" 41 typedef std::tuple<alloc_first> T; 43 alloc_first::allocator_constructed = false; 45 assert(alloc_first::allocator_constructed); 57 typedef std::tuple<MoveOnly, alloc_first> T; 59 alloc_first::allocator_constructed = false; 61 assert(alloc_first::allocator_constructed); 66 typedef std::tuple<MoveOnly, alloc_first, alloc_last> T; 68 alloc_first::allocator_constructed = false; 71 assert(alloc_first::allocator_constructed) [all...] |
alloc_const_pair.pass.cpp | 24 #include "../alloc_first.h" 39 typedef std::tuple<alloc_first, double> T1; 41 alloc_first::allocator_constructed = false; 43 assert(alloc_first::allocator_constructed); 49 typedef std::tuple<alloc_first, alloc_last> T1; 51 alloc_first::allocator_constructed = false; 54 assert(alloc_first::allocator_constructed);
|
alloc_convert_move.pass.cpp | 25 #include "../alloc_first.h" 47 typedef std::tuple<alloc_first> T1; 49 alloc_first::allocator_constructed = false; 51 assert(alloc_first::allocator_constructed); 63 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 65 alloc_first::allocator_constructed = false; 67 assert(alloc_first::allocator_constructed); 73 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1; 75 alloc_first::allocator_constructed = false; 78 assert(alloc_first::allocator_constructed) [all...] |
alloc_move_pair.pass.cpp | 25 #include "../alloc_first.h" 47 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 49 alloc_first::allocator_constructed = false; 51 assert(alloc_first::allocator_constructed);
|
alloc_UTypes.pass.cpp | 24 #include "../alloc_first.h" 113 alloc_first::allocator_constructed = false; 115 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg, 118 assert(alloc_first::allocator_constructed); 119 assert(std::get<1>(t) == alloc_first(2));
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
alloc_const_Types.pass.cpp | 21 #include "../alloc_first.h" 31 assert(!alloc_first::allocator_constructed); 32 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3)); 33 assert(alloc_first::allocator_constructed); 34 assert(std::get<0>(t) == alloc_first(3)); 43 alloc_first::allocator_constructed = false; 44 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5), 45 10, alloc_first(15)); 47 assert(alloc_first::allocator_constructed) [all...] |
alloc.pass.cpp | 22 #include "../alloc_first.h" 39 assert(!alloc_first::allocator_constructed); 40 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5)); 41 assert(alloc_first::allocator_constructed); 42 assert(std::get<0>(t) == alloc_first()); 51 alloc_first::allocator_constructed = false; 52 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5)); 54 assert(alloc_first::allocator_constructed); 55 assert(std::get<1>(t) == alloc_first()); 58 alloc_first::allocator_constructed = false [all...] |
alloc_convert_copy.pass.cpp | 21 #include "../alloc_first.h" 35 typedef std::tuple<alloc_first> T1; 37 alloc_first::allocator_constructed = false; 39 assert(alloc_first::allocator_constructed); 44 typedef std::tuple<alloc_first, alloc_last> T1; 46 alloc_first::allocator_constructed = false; 49 assert(alloc_first::allocator_constructed); 56 typedef std::tuple<int, alloc_first, alloc_last> T1; 58 alloc_first::allocator_constructed = false; 61 assert(alloc_first::allocator_constructed) [all...] |
alloc_copy.pass.cpp | 21 #include "../alloc_first.h" 38 typedef std::tuple<alloc_first> T; 40 alloc_first::allocator_constructed = false; 42 assert(alloc_first::allocator_constructed); 54 typedef std::tuple<alloc_first, alloc_last> T; 56 alloc_first::allocator_constructed = false; 59 assert(alloc_first::allocator_constructed); 65 typedef std::tuple<int, alloc_first, alloc_last> T; 67 alloc_first::allocator_constructed = false; 70 assert(alloc_first::allocator_constructed) [all...] |
alloc_move.pass.cpp | 22 #include "../alloc_first.h" 39 typedef std::tuple<alloc_first> T; 41 alloc_first::allocator_constructed = false; 43 assert(alloc_first::allocator_constructed); 55 typedef std::tuple<MoveOnly, alloc_first> T; 57 alloc_first::allocator_constructed = false; 59 assert(alloc_first::allocator_constructed); 64 typedef std::tuple<MoveOnly, alloc_first, alloc_last> T; 66 alloc_first::allocator_constructed = false; 69 assert(alloc_first::allocator_constructed) [all...] |
alloc_const_pair.pass.cpp | 22 #include "../alloc_first.h" 37 typedef std::tuple<alloc_first, double> T1; 39 alloc_first::allocator_constructed = false; 41 assert(alloc_first::allocator_constructed); 47 typedef std::tuple<alloc_first, alloc_last> T1; 49 alloc_first::allocator_constructed = false; 52 assert(alloc_first::allocator_constructed);
|
alloc_convert_move.pass.cpp | 23 #include "../alloc_first.h" 45 typedef std::tuple<alloc_first> T1; 47 alloc_first::allocator_constructed = false; 49 assert(alloc_first::allocator_constructed); 61 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 63 alloc_first::allocator_constructed = false; 65 assert(alloc_first::allocator_constructed); 71 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1; 73 alloc_first::allocator_constructed = false; 76 assert(alloc_first::allocator_constructed) [all...] |
alloc_move_pair.pass.cpp | 23 #include "../alloc_first.h" 45 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 47 alloc_first::allocator_constructed = false; 49 assert(alloc_first::allocator_constructed);
|
alloc_UTypes.pass.cpp | 22 #include "../alloc_first.h" 46 alloc_first::allocator_constructed = false; 48 std::tuple<int, alloc_first, alloc_last> t(std::allocator_arg, 51 assert(alloc_first::allocator_constructed); 52 assert(std::get<1>(t) == alloc_first(2));
|