Home | History | Annotate | Download | only in test

Lines Matching refs:Indx

14 template <std::size_t Indx, std::size_t Depth>
16 : public virtual C<Indx, Depth-1>,
17 public virtual C<Indx+1, Depth-1>
22 template <std::size_t Indx>
23 struct C<Indx, 0>
28 template <std::size_t Indx, std::size_t Depth>
30 : public virtual C<Indx, Depth-1>,
31 public virtual C<Indx+1, Depth-1>
35 template <class Indx, std::size_t Depth>
38 template <std::size_t ...Indx, std::size_t Depth>
39 struct makeB<std::__tuple_indices<Indx...>, Depth>
40 : public B<Indx, Depth>...