Lines Matching refs:T
27 template <typename T>
28 typename std::remove_reference<T>::type& FakeReference();
36 template <typename TStream, typename T>
37 static std::true_type InsertionOperatorTest(TStream& os, const T& value,
40 template <typename TStream, typename ... T>
41 static std::false_type InsertionOperatorTest(TStream& os, const T& ... args);
58 template <typename TL, typename ... T>
59 static std::false_type EqualityOperatorTest(const TL& left, const T& ... args);
90 template <typename T>
91 std::string ToStringAny(const T& value,
93 SupportsInsertionOperator<T>::value>::type* = nullptr) {
99 template <typename T>
100 std::string ToStringAny(const std::vector<T> value,
102 SupportsInsertionOperator<T>::value>::type* = nullptr) {
118 template <typename T>
119 std::string ToStringAny(const T&,
121 !SupportsInsertionOperator<T>::value>::type* = nullptr