Lines Matching refs:Approx
28 Approx::Approx ( double value ) in Approx() function in Catch::Detail::Approx
35 Approx Approx::custom() { in custom()
36 return Approx( 0 ); in custom()
39 Approx Approx::operator-() const { in operator -()
46 std::string Approx::toString() const { in toString()
52 bool Approx::equalityComparisonImpl(const double other) const { in equalityComparisonImpl()
59 void Approx::setMargin(double newMargin) { in setMargin()
66 void Approx::setEpsilon(double newEpsilon) { in setEpsilon()
76 Detail::Approx operator "" _a(long double val) { in operator ""_a()
77 return Detail::Approx(val); in operator ""_a()
79 Detail::Approx operator "" _a(unsigned long long val) { in operator ""_a()
80 return Detail::Approx(val); in operator ""_a()
84 std::string StringMaker<Catch::Detail::Approx>::convert(Catch::Detail::Approx const& value) { in convert()