Home | History | Annotate | Download | only in cmdline

Lines Matching full:actual

29   bool UsuallyEquals(double expected, double actual);
46 bool UsuallyEquals(double expected, double actual) {
50 FloatingPoint act(actual);
57 bool UsuallyEquals(const T& expected, const T& actual,
60 return expected == actual;
71 bool UsuallyEquals(const T& expected, const T& actual,
76 return memcmp(std::addressof(expected), std::addressof(actual), sizeof(T)) == 0;
79 bool UsuallyEquals(const XGcOption& expected, const XGcOption& actual) {
80 return memcmp(std::addressof(expected), std::addressof(actual), sizeof(expected)) == 0;
83 bool UsuallyEquals(const char* expected, std::string actual) {
84 return std::string(expected) == actual;
91 auto* actual = map.Get(key);
92 if (actual != nullptr) {
93 if (!UsuallyEquals(expected, *actual)) {
96 << detail::ToStringAny(*actual);