GNU Octave  9.1.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
cdef_object_rep Class Reference

#include "cdef-object.h"

Inheritance diagram for cdef_object_rep:
cdef_object_base cdef_object_array cdef_object_scalar handle_cdef_object value_cdef_object cdef_meta_object_rep

Public Member Functions

 cdef_object_rep ()
 
virtual ~cdef_object_rep ()=default
 
virtual Array< cdef_objectarray_value () const
 
virtual void break_closure_cycles (const std::shared_ptr< stack_frame > &)
 
std::string class_name () const
 
virtual cdef_object_repclone () const
 
virtual cdef_object_repcopy () const
 
virtual void destroy ()
 
virtual dim_vector dims () const
 
virtual cdef_object_repempty_clone () const
 
virtual octave_value get (const std::string &) const
 
virtual cdef_class get_class () const
 
virtual octave_value get_property (octave_idx_type, const std::string &) const
 
virtual bool is_array () const
 
virtual bool is_constructed () const
 
virtual bool is_constructed_for (const cdef_class &) const
 
virtual bool is_handle_object () const
 
virtual bool is_meta_object () const
 
virtual bool is_partially_constructed_for (const cdef_class &) const
 
virtual bool is_valid () const
 
virtual bool is_value_object () const
 
virtual cdef_object_repmake_array () const
 
virtual string_vector map_keys () const
 
virtual void mark_as_constructed ()
 
virtual void mark_as_constructed (const cdef_class &)
 
virtual void mark_for_construction (const cdef_class &)
 
cdef_object_repoperator= (const cdef_object_rep &)=delete
 
virtual void put (const std::string &, const octave_value &)
 
void release (const cdef_object &obj)
 
virtual void set_class (const cdef_class &)
 
virtual void set_property (octave_idx_type, const std::string &, const octave_value &)
 
virtual octave_idx_type static_count () const
 
virtual octave_value subsasgn (const std::string &, const std::list< octave_value_list > &, const octave_value &)
 
virtual octave_value_list subsref (const std::string &, const std::list< octave_value_list > &, int, std::size_t &, const cdef_class &, bool)
 

Protected Member Functions

 cdef_object_rep (const cdef_object_rep &)
 

Protected Attributes

refcount< octave_idx_typem_count
 

Friends

class cdef_object
 

Detailed Description

Definition at line 48 of file cdef-object.h.

Constructor & Destructor Documentation

◆ cdef_object_rep() [1/2]

cdef_object_rep::cdef_object_rep ( )
inline

Definition at line 56 of file cdef-object.h.

◆ ~cdef_object_rep()

virtual cdef_object_rep::~cdef_object_rep ( )
virtualdefault

◆ cdef_object_rep() [2/2]

cdef_object_rep::cdef_object_rep ( const cdef_object_rep )
inlineprotected

Definition at line 191 of file cdef-object.h.

Member Function Documentation

◆ array_value()

virtual Array<cdef_object> cdef_object_rep::array_value ( ) const
inlinevirtual

Reimplemented in cdef_object_array.

Definition at line 97 of file cdef-object.h.

◆ break_closure_cycles()

virtual void cdef_object_rep::break_closure_cycles ( const std::shared_ptr< stack_frame > &  )
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 121 of file cdef-object.h.

◆ class_name()

std::string cdef_object_rep::class_name ( ) const

Definition at line 120 of file cdef-object.cc.

References get_class(), and cdef_class::get_name().

Referenced by cdef_object_array::subsasgn(), and cdef_object_array::subsref().

◆ clone()

virtual cdef_object_rep* cdef_object_rep::clone ( ) const
inlinevirtual

Reimplemented in value_cdef_object, handle_cdef_object, and cdef_object_array.

Definition at line 69 of file cdef-object.h.

◆ copy()

virtual cdef_object_rep* cdef_object_rep::copy ( ) const
inlinevirtual

Reimplemented in cdef_meta_object_rep, value_cdef_object, and handle_cdef_object.

Definition at line 79 of file cdef-object.h.

◆ destroy()

virtual void cdef_object_rep::destroy ( )
inlinevirtual

Definition at line 178 of file cdef-object.h.

Referenced by release().

◆ dims()

virtual dim_vector cdef_object_rep::dims ( ) const
inlinevirtual

Reimplemented in cdef_object_scalar, and cdef_object_array.

Definition at line 182 of file cdef-object.h.

◆ empty_clone()

virtual cdef_object_rep* cdef_object_rep::empty_clone ( ) const
inlinevirtual

Reimplemented in cdef_object_base.

Definition at line 74 of file cdef-object.h.

◆ get()

virtual octave_value cdef_object_rep::get ( const std::string &  ) const
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 105 of file cdef-object.h.

◆ get_class()

cdef_class cdef_object_rep::get_class ( ) const
virtual

Reimplemented in cdef_object_base.

Definition at line 114 of file cdef-object.cc.

Referenced by class_name(), cdef_object::get_class(), map_keys(), and release().

◆ get_property()

virtual octave_value cdef_object_rep::get_property ( octave_idx_type  ,
const std::string &   
) const
inlinevirtual

Reimplemented in cdef_object_scalar, and cdef_object_array.

Definition at line 116 of file cdef-object.h.

◆ is_array()

virtual bool cdef_object_rep::is_array ( ) const
inlinevirtual

Reimplemented in cdef_object_array.

Definition at line 89 of file cdef-object.h.

◆ is_constructed()

virtual bool cdef_object_rep::is_constructed ( ) const
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 171 of file cdef-object.h.

◆ is_constructed_for()

virtual bool cdef_object_rep::is_constructed_for ( const cdef_class ) const
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 151 of file cdef-object.h.

◆ is_handle_object()

virtual bool cdef_object_rep::is_handle_object ( ) const
inlinevirtual

Reimplemented in handle_cdef_object.

Definition at line 93 of file cdef-object.h.

Referenced by release(), and cdef_object_scalar::subsasgn().

◆ is_meta_object()

virtual bool cdef_object_rep::is_meta_object ( ) const
inlinevirtual

Reimplemented in cdef_meta_object_rep.

Definition at line 95 of file cdef-object.h.

Referenced by release().

◆ is_partially_constructed_for()

virtual bool cdef_object_rep::is_partially_constructed_for ( const cdef_class ) const
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 156 of file cdef-object.h.

◆ is_valid()

virtual bool cdef_object_rep::is_valid ( ) const
inlinevirtual

Reimplemented in value_cdef_object, handle_cdef_object, and cdef_object_array.

Definition at line 142 of file cdef-object.h.

◆ is_value_object()

virtual bool cdef_object_rep::is_value_object ( ) const
inlinevirtual

Reimplemented in value_cdef_object.

Definition at line 91 of file cdef-object.h.

◆ make_array()

virtual cdef_object_rep* cdef_object_rep::make_array ( ) const
inlinevirtual

Reimplemented in cdef_object_base.

Definition at line 84 of file cdef-object.h.

◆ map_keys()

string_vector cdef_object_rep::map_keys ( ) const
virtual

Definition at line 126 of file cdef-object.cc.

References get_class(), cdef_class::get_names(), and cdef_object::ok().

◆ mark_as_constructed() [1/2]

virtual void cdef_object_rep::mark_as_constructed ( )
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 161 of file cdef-object.h.

◆ mark_as_constructed() [2/2]

virtual void cdef_object_rep::mark_as_constructed ( const cdef_class )
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 166 of file cdef-object.h.

◆ mark_for_construction()

virtual void cdef_object_rep::mark_for_construction ( const cdef_class )
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 146 of file cdef-object.h.

◆ operator=()

cdef_object_rep& cdef_object_rep::operator= ( const cdef_object_rep )
delete

◆ put()

virtual void cdef_object_rep::put ( const std::string &  ,
const octave_value  
)
inlinevirtual

Reimplemented in cdef_object_scalar.

Definition at line 102 of file cdef-object.h.

◆ release()

◆ set_class()

virtual void cdef_object_rep::set_class ( const cdef_class )
inlinevirtual

Reimplemented in cdef_object_base.

Definition at line 64 of file cdef-object.h.

◆ set_property()

virtual void cdef_object_rep::set_property ( octave_idx_type  ,
const std::string &  ,
const octave_value  
)
inlinevirtual

Reimplemented in cdef_object_scalar, and cdef_object_array.

Definition at line 110 of file cdef-object.h.

◆ static_count()

virtual octave_idx_type cdef_object_rep::static_count ( ) const
inlinevirtual

Definition at line 176 of file cdef-object.h.

Referenced by release().

◆ subsasgn()

virtual octave_value cdef_object_rep::subsasgn ( const std::string &  ,
const std::list< octave_value_list > &  ,
const octave_value  
)
inlinevirtual

Reimplemented in cdef_object_scalar, and cdef_object_array.

Definition at line 134 of file cdef-object.h.

◆ subsref()

virtual octave_value_list cdef_object_rep::subsref ( const std::string &  ,
const std::list< octave_value_list > &  ,
int  ,
std::size_t &  ,
const cdef_class ,
bool   
)
inlinevirtual

Reimplemented in cdef_object_scalar, and cdef_object_array.

Definition at line 127 of file cdef-object.h.

Friends And Related Function Documentation

◆ cdef_object

friend class cdef_object
friend

Definition at line 54 of file cdef-object.h.

Referenced by cdef_object_scalar::subsasgn(), and cdef_object_scalar::subsref().

Member Data Documentation

◆ m_count


The documentation for this class was generated from the following files: