Home
last modified time | relevance | path

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

/third_party/libabigail/tests/lib/
Dcatch.hpp8938 class ResultBase { class
8945 ResultBase( Type type ) : m_type( type ) {} in ResultBase() function in Catch::clara::detail::ResultBase
8946 virtual ~ResultBase() = default;
8954 class ResultValueBase : public ResultBase {
8962 ResultValueBase( Type type ) : ResultBase( type ) {} in ResultValueBase()
8964 ResultValueBase( ResultValueBase const &other ) : ResultBase( other ) { in ResultValueBase()
8965 if( m_type == ResultBase::Ok ) in ResultValueBase()
8969 ResultValueBase( Type, T const &value ) : ResultBase( Ok ) { in ResultValueBase()
8974 if( m_type == ResultBase::Ok ) in operator =()
8976 ResultBase::operator=(other); in operator =()
[all …]
/third_party/python/Lib/urllib/
Dparse.py318 ResultBase = _NetlocResultMixinStr variable