Lines Matching refs:Depth
15 template <std::size_t Indx, std::size_t Depth>
17 : public virtual C<Indx, Depth-1>,
18 public virtual C<Indx+1, Depth-1>
29 template <std::size_t Indx, std::size_t Depth>
31 : public virtual C<Indx, Depth-1>,
32 public virtual C<Indx+1, Depth-1>
36 template <class Indx, std::size_t Depth>
39 template <std::size_t ...Indx, std::size_t Depth>
40 struct makeB<std::__tuple_indices<Indx...>, Depth>
41 : public B<Indx, Depth>...
45 template <std::size_t Width, std::size_t Depth>
47 : public makeB<typename std::__make_tuple_indices<Width>::type, Depth>
54 const std::size_t Depth = 5; in test() local
55 A<Width, Depth> a; in test()
56 typedef B<Width/2, Depth> Destination; in test()