Home
last modified time | relevance | path

Searched defs:tuple_element (Results 1 – 3 of 3) sorted by relevance

/external/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-tuple.cpp158 struct tuple_element<I, tuple<Head, Tail...> > { struct
159 typedef typename tuple_element<I-1, tuple<Tail...> >::type type; argument
163 struct tuple_element<0, tuple<Head, Tail...> > { struct
167 int check_tuple_element_0[is_same<tuple_element<0, tuple<int&, float, double>>::type, argument
Dexample-bind.cpp124 struct tuple_element<I, tuple<Head, Tail...> > { struct
125 typedef typename tuple_element<I-1, tuple<Tail...> >::type type; argument
129 struct tuple_element<0, tuple<Head, Tail...> > { struct
137 typedef typename tuple_element<I-1, tuple<Values...> >::type Element; argument
/external/clang/test/SemaTemplate/
Dclass-template-decl.cpp84 class tuple_element<0, pair<_T1, _T2> > class