Home
last modified time | relevance | path

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

/external/bcc/tests/cc/
Dcatch.hpp4008 struct IArgFunction { struct
4009 virtual ~IArgFunction() {} in ~IArgFunction() argument
4011 IArgFunction() = default;
4012 IArgFunction( IArgFunction const& ) = default;
4017 virtual IArgFunction* clone() const = 0;
4024 BoundArgFunction( IArgFunction<ConfigT>* _functionObj ) : functionObj( _functionObj ) {} in BoundArgFunction()
4027IArgFunction<ConfigT>* newFunctionObj = other.functionObj ? other.functionObj->clone() : CLARA_NUL… in operator =()
4046 IArgFunction<ConfigT>* functionObj;
4050 struct NullBinder : IArgFunction<C>{
4054 virtual IArgFunction<C>* clone() const { return new NullBinder( *this ); } in clone()
[all …]