| /external/llvm-project/clang/test/CXX/dcl.decl/dcl.decomp/ |
| D | p3.cpp | 14 template<> struct std::tuple_size<Bad1> {}; struct in std 18 template<> struct std::tuple_size<Bad2> { const int value = 5; }; 21 template<> struct std::tuple_size<A> { static const int value = 3; }; 22 template<> struct std::tuple_size<B> { enum { value = 3 }; }; 63 template<typename T> struct std::tuple_size<const T> : std::tuple_size<T> {}; struct in std 131 template<> struct std::tuple_size<C> { static const int value = 1; }; 151 template<> struct std::tuple_size<D> { static const int value = 1; }; 161 template<> struct std::tuple_size<E> { static const int value = 1; }; 172 template<> struct std::tuple_size<ADL::X> { static const int value = 1; }; 184 struct std::tuple_size<wrap<ET, GTL, GTR>> { struct in std [all …]
|
| /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/ |
| D | tuple_size_incomplete.fail.cpp | 29 struct std::tuple_size<Dummy1> { struct in std 35 struct std::tuple_size<Dummy2> { 41 struct std::tuple_size<Dummy3> {};
|
| D | tuple_size_structured_bindings.pass.cpp | 132 struct std::tuple_size<Test> { struct in std 134 static const size_t value = 1;
|
| D | tuple_size_incomplete.pass.cpp | 34 template <> struct tuple_size<Dummy1> : public integral_constant<size_t, 0> {}; struct
|
| /external/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/ |
| D | tuple_size_incomplete.fail.cpp | 28 struct std::tuple_size<Dummy1> { struct in std 34 struct std::tuple_size<Dummy2> { 40 struct std::tuple_size<Dummy3> {};
|
| D | tuple_size_structured_bindings.pass.cpp | 132 struct std::tuple_size<Test> { struct in std 134 static const size_t value = 1;
|
| D | tuple_size_incomplete.pass.cpp | 34 template <> struct tuple_size<Dummy1> : public integral_constant<size_t, 0> {}; struct
|
| /external/llvm-project/clang/test/SemaTemplate/ |
| D | cxx1z-decomposition.cpp | 15 template<> struct std::tuple_size<C> { enum { value = 2 }; };
|
| D | alias-templates.cpp | 249 template<typename T> struct tuple_size { static const int value = 0; }; argument 250 …template<typename T> struct tuple_size<EnableTupleSize<const T, decltype(tuple_size<T>::value)>> {… struct 251 …template<typename T> struct tuple_size<EnableTupleSize<volatile T, decltype(tuple_size<T>::value)>… struct
|
| /external/llvm-project/clang/test/CXX/drs/ |
| D | dr23xx.cpp | 102 template <> struct std::tuple_size<dr2386::Bad1> {}; struct in std::std 103 template <> struct std::tuple_size<dr2386::Bad2> { struct in std::std 104 static const int value = 42;
|
| /external/llvm-project/clang/test/CodeGenCXX/ |
| D | cxx1z-decomposition.cpp | 15 template<> struct std::tuple_size<B> { enum { value = 2 }; };
|
| /external/llvm-project/clang/test/Parser/ |
| D | decomposed-condition.cpp | 14 template<> struct tuple_size<Get> { static constexpr int value = 1; }; struct
|
| /external/llvm/lib/DebugInfo/DWARF/ |
| D | DWARFDebugArangeSet.cpp | 61 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/ |
| D | DWARFDebugArangeSet.cpp | 70 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
|
| /external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| D | DWARFDebugArangeSet.cpp | 94 const uint32_t tuple_size = m_header.addr_size << 1; in extract() local
|
| /external/tensorflow/tensorflow/compiler/tf2xla/kernels/ |
| D | tensor_list_utils.cc | 167 int tuple_size = xla::ShapeUtil::TupleElementCount(list_shape); in GetTensorListPushIndex() local 180 int tuple_size = xla::ShapeUtil::TupleElementCount(list_shape); in SetTensorListPushIndex() local 229 int tuple_size = xla::ShapeUtil::TupleElementCount(element_tensor_list_shape); in GetTensorListShapeFromElementTensorListShape() local 273 int tuple_size = xla::ShapeUtil::TupleElementCount(list_shape); in CreateZerosTensorListWithShape() local
|
| /external/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| D | DWARFDebugArangeSet.cpp | 106 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
|
| /external/llvm-project/clang/test/Analysis/ |
| D | live-bindings-test.cpp | 102 struct tuple_size<Mytuple> struct
|
| /external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
| D | tuple_ops.cc | 93 int tuple_size = tuple_shape.tuple_shapes_size(); in EmitTupleAllocasAtFunctionEntry() local
|
| /external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
| D | example-tuple.cpp | 146 template<typename... Values> struct tuple_size<tuple<Values...> > { struct 150 int check_tuple_size_0[tuple_size<tuple<> >::value == 0? 1 : -1]; argument
|
| D | example-bind.cpp | 117 template<typename... Values> struct tuple_size<tuple<Values...> > { struct 118 static const int value = sizeof...(Values);
|
| /external/llvm-project/clang/test/CXX/temp/temp.decls/temp.variadic/ |
| D | example-tuple.cpp | 146 template<typename... Values> struct tuple_size<tuple<Values...> > { struct 150 int check_tuple_size_0[tuple_size<tuple<> >::value == 0? 1 : -1]; argument
|
| D | example-bind.cpp | 117 template<typename... Values> struct tuple_size<tuple<Values...> > { struct 118 static const int value = sizeof...(Values);
|
| /external/llvm-project/clang/test/SemaCXX/ |
| D | warn-unsequenced.cpp | 651 template<> struct std::tuple_size<bindings::C> { enum { value = 2 }; };
|
| /external/fmtlib/test/ |
| D | ranges-test.cc | 96 template <> struct tuple_size<my_struct> : std::integral_constant<size_t, 2> {}; struct
|