/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.cnstr/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/default 23 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/convert_copy 27 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/alloc 31 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/alloc_UTypes 35 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/alloc_const_Types 39 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/alloc_move_pair 43 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/alloc_move 47 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/UTypes 51 test_name := utilities/tuple/tuple.tuple/tuple.cnstr/copy [all …]
|
D | convert_copy.pass.cpp | 56 typedef std::tuple<double> T0; in main() 57 typedef std::tuple<int> T1; in main() 64 typedef std::tuple<double> T0; in main() 65 typedef std::tuple<A> T1; in main() 71 typedef std::tuple<int> T0; in main() 72 typedef std::tuple<C> T1; in main() 79 typedef std::tuple<double, char> T0; in main() 80 typedef std::tuple<int, int> T1; in main() 87 typedef std::tuple<double, char, D> T0; in main() 88 typedef std::tuple<int, int, B> T1; in main() [all …]
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-tuple.cpp | 54 template<typename... Values> class tuple; 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class 61 typedef tuple<Tail...> inherited; 64 tuple() { } in tuple() function in tuple 68 tuple(typename add_const_reference<Head>::type v, in tuple() function in tuple 73 template<typename... VValues> tuple(const tuple<VValues...>& other) in tuple() function in tuple 76 template<typename... VValues> tuple& 77 operator=(const tuple<VValues...>& other) { in operator =() 93 tuple<> t0a; in test_tuple() [all …]
|
D | example-bind.cpp | 54 template<typename... Values> class tuple; 57 template<> class tuple<> { }; class 60 class tuple<Head, Tail...> : private tuple<Tail...> { class 61 typedef tuple<Tail...> inherited; 64 tuple() { } in tuple() function in tuple 68 tuple(typename add_const_reference<Head>::type v, in tuple() function in tuple 73 template<typename... VValues> tuple(const tuple<VValues...>& other) in tuple() function in tuple 76 template<typename... VValues> tuple& 77 operator=(const tuple<VValues...>& other) { in operator =() 104 tuple<typename make_tuple_result<Values>::type...> [all …]
|
D | multi-level-substitution.cpp | 4 template<typename...> struct tuple { }; struct 38 struct Inner<tuple<pair<Types, YTypes>...> > { 43 int check0[X<short, int, long>::Inner<tuple<pair<short, unsigned short>, 48 int check1[X<short, int>::Inner<tuple<pair<short, unsigned short>, 61 struct Inner<tuple<pair<Types, YTypes>...>, 67 int check2[X1<short, int, long>::Inner<tuple<pair<short, unsigned short>, 74 int check3[X1<short, int>::Inner<tuple<pair<short, unsigned short>, 119 struct Inner<tuple<pair<Types1, Types2>...>, 125 int check6[X3<short, int, long>::Inner<tuple<pair<short, unsigned short>, 133 int check7[X3<short, int>::Inner<tuple<pair<short, unsigned short>, [all …]
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/ |
D | tuple_cat.pass.cpp | 27 std::tuple<> t = std::tuple_cat(); in main() 30 std::tuple<> t1; in main() 31 std::tuple<> t2 = std::tuple_cat(t1); in main() 34 std::tuple<> t = std::tuple_cat(std::tuple<>()); in main() 37 std::tuple<> t = std::tuple_cat(std::array<int, 0>()); in main() 40 std::tuple<int> t1(1); in main() 41 std::tuple<int> t = std::tuple_cat(t1); in main() 47 constexpr std::tuple<> t = std::tuple_cat(); in main() 50 constexpr std::tuple<> t1; in main() 51 constexpr std::tuple<> t2 = std::tuple_cat(t1); in main() [all …]
|
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.creation/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.creation/forward_as_tuple 23 test_name := utilities/tuple/tuple.tuple/tuple.creation/tie 27 test_name := utilities/tuple/tuple.tuple/tuple.creation/tuple_cat 31 test_name := utilities/tuple/tuple.tuple/tuple.creation/make_tuple
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.assign/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.assign/convert_copy 23 test_name := utilities/tuple/tuple.tuple/tuple.assign/copy 27 test_name := utilities/tuple/tuple.tuple/tuple.assign/convert_move 31 test_name := utilities/tuple/tuple.tuple/tuple.assign/move 35 test_name := utilities/tuple/tuple.tuple/tuple.assign/const_pair 39 test_name := utilities/tuple/tuple.tuple/tuple.assign/move_pair
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.elem/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.elem/tuple.by.type 20 test_src := tuple.by.type.pass.cpp 23 test_name := utilities/tuple/tuple.tuple/tuple.elem/get_const 27 test_name := utilities/tuple/tuple.tuple/tuple.elem/get_non_const 31 test_name := utilities/tuple/tuple.tuple/tuple.elem/get_rv
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/ |
D | eq.pass.cpp | 25 typedef std::tuple<> T1; in main() 26 typedef std::tuple<> T2; in main() 33 typedef std::tuple<int> T1; in main() 34 typedef std::tuple<double> T2; in main() 41 typedef std::tuple<int> T1; in main() 42 typedef std::tuple<double> T2; in main() 49 typedef std::tuple<int, double> T1; in main() 50 typedef std::tuple<double, char> T2; in main() 57 typedef std::tuple<int, double> T1; in main() 58 typedef std::tuple<double, char> T2; in main() [all …]
|
D | lt.pass.cpp | 37 typedef std::tuple<> T1; in main() 38 typedef std::tuple<> T2; in main() 47 typedef std::tuple<char> T1; in main() 48 typedef std::tuple<double> T2; in main() 57 typedef std::tuple<char> T1; in main() 58 typedef std::tuple<double> T2; in main() 67 typedef std::tuple<char> T1; in main() 68 typedef std::tuple<double> T2; in main() 77 typedef std::tuple<char, int> T1; in main() 78 typedef std::tuple<double, char> T2; in main() [all …]
|
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.rel/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.rel/lt 23 test_name := utilities/tuple/tuple.tuple/tuple.rel/eq
|
/external/protobuf/gtest/test/ |
D | gtest-tuple_test.cc | 40 using ::std::tr1::tuple; 47 StaticAssertTypeEq<int, tuple_element<0, tuple<int, char> >::type>(); in TEST() 48 StaticAssertTypeEq<int&, tuple_element<1, tuple<double, int&> >::type>(); in TEST() 49 StaticAssertTypeEq<bool, tuple_element<2, tuple<double, int, bool> >::type>(); in TEST() 55 EXPECT_EQ(0, +tuple_size<tuple<> >::value); in TEST() 56 EXPECT_EQ(1, +tuple_size<tuple<void*> >::value); in TEST() 57 EXPECT_EQ(1, +tuple_size<tuple<char> >::value); in TEST() 58 EXPECT_EQ(1, +(tuple_size<tuple<tuple<int, double> > >::value)); in TEST() 59 EXPECT_EQ(2, +(tuple_size<tuple<int&, const char> >::value)); in TEST() 60 EXPECT_EQ(3, +(tuple_size<tuple<char*, void, const bool&> >::value)); in TEST() [all …]
|
/external/gtest/test/ |
D | gtest-tuple_test.cc | 40 using ::std::tr1::tuple; 47 StaticAssertTypeEq<int, tuple_element<0, tuple<int, char> >::type>(); in TEST() 48 StaticAssertTypeEq<int&, tuple_element<1, tuple<double, int&> >::type>(); in TEST() 49 StaticAssertTypeEq<bool, tuple_element<2, tuple<double, int, bool> >::type>(); in TEST() 55 EXPECT_EQ(0, +tuple_size<tuple<> >::value); in TEST() 56 EXPECT_EQ(1, +tuple_size<tuple<void*> >::value); in TEST() 57 EXPECT_EQ(1, +tuple_size<tuple<char> >::value); in TEST() 58 EXPECT_EQ(1, +(tuple_size<tuple<tuple<int, double> > >::value)); in TEST() 59 EXPECT_EQ(2, +(tuple_size<tuple<int&, const char> >::value)); in TEST() 60 EXPECT_EQ(3, +(tuple_size<tuple<char*, void, const bool&> >::value)); in TEST() [all …]
|
/external/chromium_org/testing/gtest/test/ |
D | gtest-tuple_test.cc | 40 using ::std::tr1::tuple; 47 StaticAssertTypeEq<int, tuple_element<0, tuple<int, char> >::type>(); in TEST() 48 StaticAssertTypeEq<int&, tuple_element<1, tuple<double, int&> >::type>(); in TEST() 49 StaticAssertTypeEq<bool, tuple_element<2, tuple<double, int, bool> >::type>(); in TEST() 55 EXPECT_EQ(0, +tuple_size<tuple<> >::value); in TEST() 56 EXPECT_EQ(1, +tuple_size<tuple<void*> >::value); in TEST() 57 EXPECT_EQ(1, +tuple_size<tuple<char> >::value); in TEST() 58 EXPECT_EQ(1, +(tuple_size<tuple<tuple<int, double> > >::value)); in TEST() 59 EXPECT_EQ(2, +(tuple_size<tuple<int&, const char> >::value)); in TEST() 60 EXPECT_EQ(3, +(tuple_size<tuple<char*, void, const bool&> >::value)); in TEST() [all …]
|
/external/libcxx/include/ |
D | tuple | 2 //===--------------------------- tuple ------------------------------------===// 15 tuple synopsis 21 class tuple { 23 constexpr tuple(); 24 explicit tuple(const T&...); // constexpr in C++14 26 explicit tuple(U&&...); // constexpr in C++14 27 tuple(const tuple&) = default; 28 tuple(tuple&&) = default; 30 tuple(const tuple<U...>&); // constexpr in C++14 32 tuple(tuple<U...>&&); // constexpr in C++14 [all …]
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.helper/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.helper/tuple_element 23 test_name := utilities/tuple/tuple.tuple/tuple.helper/tuple_size
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 55 #define GTEST_0_TUPLE_(T) tuple<> 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 52 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 57 #define GTEST_0_TUPLE_(T) tuple<> 58 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 60 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 62 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 64 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 66 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 68 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 70 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 72 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/protobuf/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 49 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 54 #define GTEST_0_TUPLE_(T) tuple<> 55 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 57 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 59 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 61 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 63 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 65 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 67 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 69 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 55 #define GTEST_0_TUPLE_(T) tuple<> 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
D | gtest-tuple.h | 50 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 55 #define GTEST_0_TUPLE_(T) tuple<> 56 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 58 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 60 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 62 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 64 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 66 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 68 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 70 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/chromium_org/testing/gtest/include/gtest/internal/ |
D | gtest-tuple.h | 52 template <GTEST_10_TYPENAMES_(U)> friend class tuple; \ 65 #define GTEST_0_TUPLE_(T) tuple<> 66 #define GTEST_1_TUPLE_(T) tuple<T##0, void, void, void, void, void, void, \ 68 #define GTEST_2_TUPLE_(T) tuple<T##0, T##1, void, void, void, void, void, \ 70 #define GTEST_3_TUPLE_(T) tuple<T##0, T##1, T##2, void, void, void, void, \ 72 #define GTEST_4_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, void, void, void, \ 74 #define GTEST_5_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, void, void, \ 76 #define GTEST_6_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, void, \ 78 #define GTEST_7_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ 80 #define GTEST_8_TUPLE_(T) tuple<T##0, T##1, T##2, T##3, T##4, T##5, T##6, \ [all …]
|
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
D | tuple.pxd | 10 # Return true if p is a tuple object or an instance of a subtype 11 # of the tuple type. 14 # Return true if p is a tuple object, but not an instance of a subtype of the tuple type. 16 tuple PyTuple_New(Py_ssize_t len) 18 # Return a new tuple object of size len, or NULL on failure. 20 tuple PyTuple_Pack(Py_ssize_t n, ...) 22 # Return a new tuple object of size n, or NULL on failure. The 23 # tuple values are initialized to the subsequent n C arguments 28 # Take a pointer to a tuple object, and return the size of that tuple. 31 # Return the size of the tuple p, which must be non-NULL and point [all …]
|
/external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/ |
D | Android.mk | 17 test_makefile := external/libcxx/test/utilities/tuple/tuple.tuple/tuple.special/Android.mk 19 test_name := utilities/tuple/tuple.tuple/tuple.special/non_member_swap
|