Public Member Functions | |
cdef_method_rep (void) | |
~cdef_method_rep (void)=default | |
virtual Array< cdef_object > | array_value (void) const |
bool | check_access (void) const |
std::string | class_name (void) const |
cdef_object_rep * | clone (void) const |
cdef_object_rep * | copy (void) const |
virtual void | destroy (void) |
dim_vector | dims (void) const |
cdef_object_rep * | empty_clone (void) const |
octave_value_list | execute (const cdef_object &obj, const octave_value_list &args, int nargout, bool do_check_access=true, const std::string &who="") |
octave_value_list | execute (const octave_value_list &args, int nargout, bool do_check_access=true, const std::string &who="") |
octave_value | get (const std::string &pname) const |
cdef_class | get_class (void) const |
std::string | get_doc_string (void) |
octave_value | get_function (void) const |
std::string | get_name (void) const |
octave_value | get_property (octave_idx_type idx, const std::string &pname) const |
virtual bool | is_array (void) const |
virtual bool | is_class (void) const |
bool | is_constructed (void) const |
bool | is_constructed_for (const cdef_class &cls) const |
bool | is_constructor (void) const |
bool | is_defined_in_class (const std::string &cname) const |
bool | is_external (void) const |
bool | is_handle_object (void) const |
bool | is_meta_object (void) const |
bool | is_method (void) const |
virtual bool | is_package (void) const |
bool | is_partially_constructed_for (const cdef_class &cls) const |
virtual bool | is_property (void) const |
bool | is_static (void) const |
bool | is_valid (void) const |
virtual bool | is_value_object (void) const |
cdef_object_rep * | make_array (void) const |
virtual string_vector | map_keys (void) const |
void | mark_as_constructed (const cdef_class &cls) |
void | mark_as_constructed (void) |
void | mark_as_external (const std::string &dtype) |
void | mark_for_construction (const cdef_class &) |
bool | meta_accepts_postfix_index (char type) const |
virtual void | meta_release (void) |
octave_value_list | meta_subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout) |
cdef_method_rep & | operator= (const cdef_method_rep &m)=delete |
void | put (const std::string &pname, const octave_value &val) |
void | release (const cdef_object &obj) |
void | set_class (const cdef_class &cls) |
void | set_function (const octave_value &fcn) |
void | set_name (const std::string &nm) |
void | set_property (octave_idx_type idx, const std::string &pname, const octave_value &pval) |
virtual octave_idx_type | static_count (void) const |
octave_value | subsasgn (const std::string &type, const std::list< octave_value_list > &idx, const octave_value &rhs) |
octave_value_list | subsref (const std::string &type, const std::list< octave_value_list > &idx, int nargout, size_t &skip, const cdef_class &context, bool auto_add) |
Protected Attributes | |
std::map< cdef_class, std::list< cdef_class > > | ctor_list |
refcount< octave_idx_type > | m_count |
octave_scalar_map | map |
Private Member Functions | |
cdef_method_rep (const cdef_method_rep &m) | |
void | check_method (void) |
OCTAVE_NORETURN void | err_invalid_object (const char *who) const |
cdef_method | wrap (void) |
Private Attributes | |
std::string | dispatch_type |
octave_value | function |
cdef_object | klass |
Definition at line 49 of file cdef-method.h.
|
inline |
Definition at line 54 of file cdef-method.h.
|
default |
|
inlineprivate |
Definition at line 111 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented in octave::cdef_object_array.
Definition at line 98 of file cdef-object.h.
bool octave::cdef_method::cdef_method_rep::check_access | ( | void | ) | const |
Definition at line 204 of file cdef-method.cc.
References octave::check_access(), octave::cdef_object::get(), octave::cdef_method::get_name(), and octave::to_cdef().
|
private |
Definition at line 71 of file cdef-method.cc.
References octave::__get_load_path__(), dispatch_type, error(), octave::load_path::find_method(), get_name(), octave_value::is_defined(), octave::is_dummy_method(), is_external(), octave::load_fcn_from_file(), octave::make_function_of_class(), and name.
|
inherited |
Definition at line 120 of file cdef-object.cc.
References octave::cdef_object_rep::get_class(), and octave::cdef_class::get_name().
Referenced by octave::cdef_object_array::subsasgn(), and octave::cdef_object_array::subsref().
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 539 of file cdef-object.h.
References octave::cdef_object_rep::m_count.
|
inlinevirtual |
Reimplemented from octave::cdef_object_rep.
Definition at line 62 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented in octave::cdef_package::cdef_package_rep, and octave::cdef_class::cdef_class_rep.
Definition at line 174 of file cdef-object.h.
Referenced by octave::cdef_object_rep::release().
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 456 of file cdef-object.h.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 358 of file cdef-object.h.
|
inlineprivateinherited |
Definition at line 191 of file cdef-object.h.
References error().
Referenced by octave::cdef_object_rep::get_class().
octave_value_list octave::cdef_method::cdef_method_rep::execute | ( | const cdef_object & | obj, |
const octave_value_list & | args, | ||
int | nargout, | ||
bool | do_check_access = true , |
||
const std::string & | who = "" |
||
) |
Definition at line 144 of file cdef-method.cc.
References octave::cdef_method::check_access(), octave::err_method_access(), error(), octave::feval(), octave::cdef_object::get(), octave_value_list::length(), octave_value_list::resize(), retval, and octave::to_ov().
octave_value_list octave::cdef_method::cdef_method_rep::execute | ( | const octave_value_list & | args, |
int | nargout, | ||
bool | do_check_access = true , |
||
const std::string & | who = "" |
||
) |
Definition at line 122 of file cdef-method.cc.
References octave::cdef_method::check_access(), octave::err_method_access(), error(), octave::feval(), octave::cdef_object::get(), and retval.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 463 of file cdef-object.h.
References error(), and Array< T >::numel().
Referenced by octave::cdef_property::cdef_property_rep::get_value().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 189 of file cdef-object.cc.
References octave::cdef_object_base::klass.
Referenced by octave::handle_cdef_object::~handle_cdef_object(), octave::value_cdef_object::~value_cdef_object(), octave::cdef_object_array::fill_empty_values(), octave::cdef_object_base::make_array(), octave::cdef_object_base::set_class(), octave::cdef_object_array::subsasgn(), octave::cdef_object_scalar::subsasgn(), octave::cdef_object_array::subsref(), and octave::cdef_object_scalar::subsref().
std::string octave::cdef_method::cdef_method_rep::get_doc_string | ( | void | ) |
Definition at line 194 of file cdef-method.cc.
References octave_function::doc_string(), and octave_base_value::function_value().
|
inline |
Definition at line 72 of file cdef-method.h.
|
inline |
Definition at line 66 of file cdef-method.h.
Referenced by check_method().
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 483 of file cdef-object.h.
References error().
|
inlinevirtualinherited |
Reimplemented in octave::cdef_object_array.
Definition at line 90 of file cdef-object.h.
|
inlinevirtualinherited |
Reimplemented in octave::cdef_class::cdef_class_rep.
Definition at line 609 of file cdef-object.h.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 510 of file cdef-object.h.
Referenced by octave::cdef_object_scalar::is_constructed_for(), and octave::cdef_object_scalar::is_partially_constructed_for().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 699 of file cdef-object.cc.
References octave::cdef_object_scalar::ctor_list, and octave::cdef_object_scalar::is_constructed().
bool octave::cdef_method::cdef_method_rep::is_constructor | ( | void | ) | const |
Definition at line 177 of file cdef-method.cc.
bool octave::cdef_method::cdef_method_rep::is_defined_in_class | ( | const std::string & | cname | ) | const |
Definition at line 186 of file cdef-method.cc.
|
inline |
Definition at line 80 of file cdef-method.h.
Referenced by check_method().
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 553 of file cdef-object.h.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 607 of file cdef-object.h.
|
inlinevirtual |
Reimplemented from octave::cdef_meta_object_rep.
Definition at line 64 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented in octave::cdef_package::cdef_package_rep.
Definition at line 615 of file cdef-object.h.
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 706 of file cdef-object.cc.
References octave::cdef_object_scalar::ctor_list, and octave::cdef_object_scalar::is_constructed().
|
inlinevirtualinherited |
Reimplemented in octave::cdef_property::cdef_property_rep.
Definition at line 611 of file cdef-object.h.
|
inline |
Definition at line 70 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 551 of file cdef-object.h.
|
inlinevirtualinherited |
Reimplemented in octave::value_cdef_object.
Definition at line 92 of file cdef-object.h.
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 206 of file cdef-object.cc.
References octave::cdef_object_base::get_class(), and r.
|
virtualinherited |
Definition at line 126 of file cdef-object.cc.
References octave::cdef_object_rep::get_class(), octave::cdef_class::get_names(), and octave::cdef_object::ok().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 725 of file cdef-object.cc.
References octave::cdef_object_scalar::ctor_list.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 506 of file cdef-object.h.
|
inline |
Definition at line 82 of file cdef-method.h.
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 687 of file cdef-object.cc.
References octave_value::cell_value(), octave::cdef_object_scalar::ctor_list, octave::cdef_object::get(), octave::cdef_class::get_name(), and octave::lookup_classes().
|
inlinevirtual |
Reimplemented from octave::cdef_meta_object_rep.
Definition at line 104 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented in octave::cdef_package::cdef_package_rep, and octave::cdef_class::cdef_class_rep.
Definition at line 625 of file cdef-object.h.
|
virtual |
Reimplemented from octave::cdef_meta_object_rep.
Definition at line 212 of file cdef-method.cc.
References error(), octave::cdef_method::execute(), and retval.
|
delete |
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 458 of file cdef-object.h.
Referenced by octave::cdef_class::cdef_class_rep::cdef_class_rep().
|
inherited |
Definition at line 44 of file cdef-object.cc.
References octave::__get_interpreter__(), octave::cdef_class::delete_object(), octave::cdef_object_rep::destroy(), octave::cdef_object_rep::get_class(), interpreter_try(), octave::cdef_object_rep::is_handle_object(), octave::cdef_object_rep::is_meta_object(), octave::cdef_object_rep::m_count, octave_interrupt_state, octave::action_container::protect_var(), quit_allowed, octave::interpreter::recover_from_exception(), octave::cdef_object_rep::static_count(), and warning().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 195 of file cdef-object.cc.
References octave::cdef_object_base::get_class(), octave::cdef_object_base::klass, and octave::cdef_object::ok().
|
inline |
Definition at line 74 of file cdef-method.h.
|
inline |
Definition at line 68 of file cdef-method.h.
|
inlinevirtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 473 of file cdef-object.h.
References error().
|
inlinevirtualinherited |
Reimplemented in octave::cdef_package::cdef_package_rep, and octave::cdef_class::cdef_class_rep.
Definition at line 172 of file cdef-object.h.
Referenced by octave::cdef_object_rep::release().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 607 of file cdef-object.cc.
References octave_value::assign(), octave::cdef_object_rep::cdef_object, octave_value::class_name(), error(), octave::cdef_class::find_property(), octave::cdef_object_base::get_class(), octave::cdef_property::get_value(), octave::cdef_property::is_constant(), octave::cdef_object_rep::is_handle_object(), octave::cdef_object_rep::m_count, name, octave::cdef_object::ok(), octave_value::op_asn_eq, retval, octave::cdef_object::set_class(), octave::cdef_property::set_value(), octave::cdef_object::subsasgn(), octave::to_cdef(), and octave::to_ov().
|
virtualinherited |
Reimplemented from octave::cdef_object_rep.
Definition at line 503 of file cdef-object.cc.
References octave::cdef_object_rep::cdef_object, octave::context, octave_value_list::empty(), error(), octave::cdef_method::execute(), octave::cdef_class::find_method(), octave::cdef_class::find_property(), octave::cdef_object_base::get_class(), octave::cdef_property::get_value(), octave::cdef_property::is_constant(), octave::cdef_method::is_static(), octave::cdef_object_rep::m_count, name, octave::cdef_object::ok(), retval, octave::cdef_object::set_class(), octave::cdef_object::subsref(), and octave::to_ov().
|
inlineprivate |
Definition at line 118 of file cdef-method.h.
|
protectedinherited |
|
private |
Definition at line 129 of file cdef-method.h.
Referenced by check_method().
|
private |
Definition at line 124 of file cdef-method.h.
|
privateinherited |
Definition at line 375 of file cdef-object.h.
Referenced by octave::cdef_object_base::get_class(), and octave::cdef_object_base::set_class().
|
protectedinherited |
Definition at line 183 of file cdef-object.h.
Referenced by octave::handle_cdef_object::clone(), octave::cdef_object::operator=(), octave::cdef_object_rep::release(), octave::cdef_object_array::subsasgn(), octave::cdef_object_scalar::subsasgn(), octave::cdef_object_array::subsref(), and octave::cdef_object_scalar::subsref().
|
protectedinherited |
Definition at line 515 of file cdef-object.h.