Home | History | Annotate | Download | only in unord

Lines Matching defs:Tp

20     typedef int Tp;
21 typedef std::__hash_key_value_types<Tp> Traits;
23 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
24 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
28 typedef std::pair<int, int> Tp;
29 typedef std::__hash_key_value_types<Tp> Traits;
30 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
31 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
32 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
36 typedef std::pair<const int, int> Tp;
37 typedef std::__hash_key_value_types<Tp> Traits;
38 static_assert((std::is_same<Traits::key_type, Tp>::value), "");
39 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");
40 static_assert((std::is_same<Traits::__container_value_type, Tp>::value), "");
44 typedef std::__hash_value_type<int, int> Tp;
45 typedef std::__hash_key_value_types<Tp> Traits;
48 static_assert((std::is_same<Traits::__node_value_type, Tp>::value), "");