Home
last modified time | relevance | path

Searched refs:MatchNotOf (Results 1 – 1 of 1) sorted by relevance

/thrift-3.4.0/compiler/cpp/tests/catch/
Dcatch.hpp1030 template<typename ArgT> struct MatchNotOf;
1062 MatchNotOf<ComparatorT> operator ! () const;
1126 struct MatchNotOf : MatcherBase<ArgT> { struct
1128MatchNotOf( MatcherBase<ArgT> const& underlyingMatcher ) : m_underlyingMatcher( underlyingMatcher … in MatchNotOf() argument
1149 MatchNotOf<ComparatorT> MatcherBase<ObjectT, ComparatorT>::operator ! () const { in operator !()
1150 return MatchNotOf<ComparatorT>( *this ); in operator !()
1159 inline Impl::MatchNotOf<T> Not( Impl::MatcherBase<T> const& underlyingMatcher ) { in Not()
1160 return Impl::MatchNotOf<T>( underlyingMatcher ); in Not()