/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...] |
/prebuilts/ndk/r11/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...] |
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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...] |
/prebuilts/ndk/r11/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...] |
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
alloc_const_Types.pass.cpp | 24 #include "../alloc_first.h" 55 assert(!alloc_first::allocator_constructed); 56 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3)); 57 assert(alloc_first::allocator_constructed); 58 assert(std::get<0>(t) == alloc_first(3)); 67 alloc_first::allocator_constructed = false; 68 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5), 69 10, alloc_first(15)); 71 assert(alloc_first::allocator_constructed) [all...] |
alloc.pass.cpp | 28 #include "../alloc_first.h" 57 assert(!alloc_first::allocator_constructed); 58 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5)); 59 assert(alloc_first::allocator_constructed); 60 assert(std::get<0>(t) == alloc_first()); 69 alloc_first::allocator_constructed = false; 70 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5)); 72 assert(alloc_first::allocator_constructed); 73 assert(std::get<1>(t) == alloc_first()); 76 alloc_first::allocator_constructed = false [all...] |
alloc_convert_copy.pass.cpp | 24 #include "../alloc_first.h" 48 typedef std::tuple<alloc_first> T1; 50 alloc_first::allocator_constructed = false; 52 assert(alloc_first::allocator_constructed); 57 typedef std::tuple<alloc_first, alloc_last> T1; 59 alloc_first::allocator_constructed = false; 62 assert(alloc_first::allocator_constructed); 69 typedef std::tuple<long long, alloc_first, alloc_last> T1; 71 alloc_first::allocator_constructed = false; 74 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); 58 typedef std::tuple<alloc_first, alloc_last> T; 60 alloc_first::allocator_constructed = false; 63 assert(alloc_first::allocator_constructed); 69 typedef std::tuple<int, alloc_first, alloc_last> T; 71 alloc_first::allocator_constructed = false; 74 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); 59 typedef std::tuple<MoveOnly, alloc_first> T; 61 alloc_first::allocator_constructed = false; 63 assert(alloc_first::allocator_constructed); 68 typedef std::tuple<MoveOnly, alloc_first, alloc_last> T; 70 alloc_first::allocator_constructed = false; 73 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" 57 typedef std::tuple<alloc_first> T1; 59 alloc_first::allocator_constructed = false; 61 assert(alloc_first::allocator_constructed); 73 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 75 alloc_first::allocator_constructed = false; 77 assert(alloc_first::allocator_constructed); 83 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1; 85 alloc_first::allocator_constructed = false; 88 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);
|
/prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
alloc_const_Types.pass.cpp | 24 #include "../alloc_first.h" 55 assert(!alloc_first::allocator_constructed); 56 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5), alloc_first(3)); 57 assert(alloc_first::allocator_constructed); 58 assert(std::get<0>(t) == alloc_first(3)); 67 alloc_first::allocator_constructed = false; 68 std::tuple<int, alloc_first> t(std::allocator_arg, A1<int>(5), 69 10, alloc_first(15)); 71 assert(alloc_first::allocator_constructed) [all...] |
alloc.pass.cpp | 24 #include "../alloc_first.h" 57 assert(!alloc_first::allocator_constructed); 58 std::tuple<alloc_first> t(std::allocator_arg, A1<int>(5)); 59 assert(alloc_first::allocator_constructed); 60 assert(std::get<0>(t) == alloc_first()); 69 alloc_first::allocator_constructed = false; 70 std::tuple<DefaultOnly, alloc_first> t(std::allocator_arg, A1<int>(5)); 72 assert(alloc_first::allocator_constructed); 73 assert(std::get<1>(t) == alloc_first()); 76 alloc_first::allocator_constructed = false [all...] |
alloc_convert_copy.pass.cpp | 24 #include "../alloc_first.h" 48 typedef std::tuple<alloc_first> T1; 50 alloc_first::allocator_constructed = false; 52 assert(alloc_first::allocator_constructed); 57 typedef std::tuple<alloc_first, alloc_last> T1; 59 alloc_first::allocator_constructed = false; 62 assert(alloc_first::allocator_constructed); 69 typedef std::tuple<int, alloc_first, alloc_last> T1; 71 alloc_first::allocator_constructed = false; 74 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" 57 typedef std::tuple<alloc_first> T1; 59 alloc_first::allocator_constructed = false; 61 assert(alloc_first::allocator_constructed); 73 typedef std::tuple<alloc_first, std::unique_ptr<B>> T1; 75 alloc_first::allocator_constructed = false; 77 assert(alloc_first::allocator_constructed); 83 typedef std::tuple<alloc_last, alloc_first, std::unique_ptr<B>> T1; 85 alloc_first::allocator_constructed = false; 88 assert(alloc_first::allocator_constructed) [all...] |