Lines Matching refs:other
261 model::test_program::operator==(const test_program& other) const in operator ==()
263 return _pimpl == other._pimpl || ( in operator ==()
264 _pimpl->interface_name == other._pimpl->interface_name && in operator ==()
265 _pimpl->binary == other._pimpl->binary && in operator ==()
266 _pimpl->root == other._pimpl->root && in operator ==()
267 _pimpl->test_suite_name == other._pimpl->test_suite_name && in operator ==()
268 _pimpl->md == other._pimpl->md && in operator ==()
269 test_cases() == other.test_cases()); in operator ==()
279 model::test_program::operator!=(const test_program& other) const in operator !=()
281 return !(*this == other); in operator !=()
299 model::test_program::operator<(const test_program& other) const in operator <()
301 return absolute_path() < other.absolute_path(); in operator <()