Home
last modified time | relevance | path

Searched defs:tuple_size (Results 1 – 25 of 33) sorted by relevance

12

/external/llvm-project/clang/test/CXX/dcl.decl/dcl.decomp/
Dp3.cpp14 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/
Dtuple_size_incomplete.fail.cpp29 struct std::tuple_size<Dummy1> { struct in std
35 struct std::tuple_size<Dummy2> {
41 struct std::tuple_size<Dummy3> {};
Dtuple_size_structured_bindings.pass.cpp132 struct std::tuple_size<Test> { struct in std
134 static const size_t value = 1;
Dtuple_size_incomplete.pass.cpp34 template <> struct tuple_size<Dummy1> : public integral_constant<size_t, 0> {}; struct
/external/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.helper/
Dtuple_size_incomplete.fail.cpp28 struct std::tuple_size<Dummy1> { struct in std
34 struct std::tuple_size<Dummy2> {
40 struct std::tuple_size<Dummy3> {};
Dtuple_size_structured_bindings.pass.cpp132 struct std::tuple_size<Test> { struct in std
134 static const size_t value = 1;
Dtuple_size_incomplete.pass.cpp34 template <> struct tuple_size<Dummy1> : public integral_constant<size_t, 0> {}; struct
/external/llvm-project/clang/test/SemaTemplate/
Dcxx1z-decomposition.cpp15 template<> struct std::tuple_size<C> { enum { value = 2 }; };
Dalias-templates.cpp249 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/
Ddr23xx.cpp102 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/
Dcxx1z-decomposition.cpp15 template<> struct std::tuple_size<B> { enum { value = 2 }; };
/external/llvm-project/clang/test/Parser/
Ddecomposed-condition.cpp14 template<> struct tuple_size<Get> { static constexpr int value = 1; }; struct
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugArangeSet.cpp61 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugArangeSet.cpp70 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFDebugArangeSet.cpp94 const uint32_t tuple_size = m_header.addr_size << 1; in extract() local
/external/tensorflow/tensorflow/compiler/tf2xla/kernels/
Dtensor_list_utils.cc167 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/
DDWARFDebugArangeSet.cpp106 const uint32_t tuple_size = HeaderData.AddrSize * 2; in extract() local
/external/llvm-project/clang/test/Analysis/
Dlive-bindings-test.cpp102 struct tuple_size<Mytuple> struct
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dtuple_ops.cc93 int tuple_size = tuple_shape.tuple_shapes_size(); in EmitTupleAllocasAtFunctionEntry() local
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-tuple.cpp146 template<typename... Values> struct tuple_size<tuple<Values...> > { struct
150 int check_tuple_size_0[tuple_size<tuple<> >::value == 0? 1 : -1]; argument
Dexample-bind.cpp117 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/
Dexample-tuple.cpp146 template<typename... Values> struct tuple_size<tuple<Values...> > { struct
150 int check_tuple_size_0[tuple_size<tuple<> >::value == 0? 1 : -1]; argument
Dexample-bind.cpp117 template<typename... Values> struct tuple_size<tuple<Values...> > { struct
118 static const int value = sizeof...(Values);
/external/llvm-project/clang/test/SemaCXX/
Dwarn-unsequenced.cpp651 template<> struct std::tuple_size<bindings::C> { enum { value = 2 }; };
/external/fmtlib/test/
Dranges-test.cc96 template <> struct tuple_size<my_struct> : std::integral_constant<size_t, 2> {}; struct

12