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