Home
last modified time | relevance | path

Searched defs:integer_sequence (Results 1 – 5 of 5) sorted by relevance

/llvm-project/libc/src/__support/CPP/utility/
H A Dinteger_sequence.h18 template <typename T, T... Ints> struct integer_sequence { argument
16 template <typename T, T... Ints> struct integer_sequence { global() struct
/llvm-project/libcxx/include/__utility/
H A Dinteger_sequence.h49 struct _LIBCPP_TEMPLATE_VIS integer_sequence { struct
51 static_assert(is_integral<_Tp>::value, "std::integer_sequence can only be instantiated with an integral type"); argument
56 using index_sequence = integer_sequence<size_t, _Ip...>; argument
/llvm-project/clang/test/SemaTemplate/
H A Dtemp_arg_pack.cpp11 template<typename T, T ...V> struct integer_sequence {}; struct
H A Dclass-template-spec.cpp152 template<typename T, T...N> struct integer_sequence { typedef T value_type; }; argument
/llvm-project/clang/test/CodeGenCXX/
H A Dmangle-template.cpp206 template <class _Tp, _Tp...> struct integer_sequence {}; struct