Home
last modified time | relevance | path

Searched defs:BoundValueRef (Results 1 – 1 of 1) sorted by relevance

/third_party/libabigail/tests/lib/
Dcatch.hpp9130 struct BoundValueRef : BoundValueRefBase { struct
9131 T &m_ref;
9133 explicit BoundValueRef( T &ref ) : m_ref( ref ) {} in BoundValueRef() argument
9135 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()
9141 struct BoundValueRef<std::vector<T>> : BoundValueRefBase { struct
9142 std::vector<T> &m_ref;
9144 explicit BoundValueRef( std::vector<T> &ref ) : m_ref( ref ) {} in BoundValueRef() function
9146 auto isContainer() const -> bool override { return true; } in isContainer()
9148 auto setValue( std::string const &arg ) -> ParserResult override { in setValue()