Lines Matching refs:ExpressionLhs
1203 template<typename T> class ExpressionLhs;
1229 ExpressionLhs<T const&> operator <= ( T const& operand );
1230 ExpressionLhs<bool> operator <= ( bool value );
1794 class ExpressionLhs { class
1795 ExpressionLhs& operator = ( ExpressionLhs const& );
1797 ExpressionLhs& operator = ( ExpressionLhs && ) = delete;
1801 ExpressionLhs( ResultBuilder& rb, T lhs ) : m_rb( rb ), m_lhs( lhs ) {} in ExpressionLhs() function in Catch::ExpressionLhs
1803 ExpressionLhs( ExpressionLhs const& ) = default;
1804 ExpressionLhs( ExpressionLhs && ) = default;
1883 inline ExpressionLhs<T const&> ResultBuilder::operator <= ( T const& operand ) { in operator <=()
1884 return ExpressionLhs<T const&>( *this, operand ); in operator <=()
1887 inline ExpressionLhs<bool> ResultBuilder::operator <= ( bool value ) { in operator <=()
1888 return ExpressionLhs<bool>( *this, value ); in operator <=()