Lines Matching refs:class

147 class sc_int_sigref;
152 // This class provides generic access to part selections for signals whose
153 // data type is sc_dt::sc_int<W>. This class serves as the base class for the
154 // sc_dt::sc_int<W> specialization of the sc_signal_in_if<T> class. The methods
155 // in this class may be over-ridden individually, those that are not overridden
157 // sc_int_sigref class.
160 // (1) Descriptions of the methods and operators in this class appear with
163 class sc_int_part_if : virtual public sc_interface {
186 // This is the class specializations for the sc_signal_in_if<T> class to
191 // (1) Descriptions of the methods and operators in this class appear with
195 class sc_signal_in_if<sc_dt::sc_int<W> > : public sc_int_part_if {
196 friend class sc_int_sigref;
227 // Proxy class for sc_signal_int bit and part selection.
229 class sc_int_sigref : public sc_dt::sc_int_subref_r
276 // This class implements a signal whose value acts like an sc_dt::sc_int<W> data
277 // value. This class is a specialization of the generic sc_signal class to
278 // implement tailored support for the sc_dt::sc_int<W> class.
281 // (1) Descriptions of the methods and operators in this class appear with
285 class sc_signal<sc_dt::sc_int<W> > :
743 // This class implements an input port whose target acts like an sc_dt::sc_int<W> data
744 // value. This class is a specialization of the generic sc_in class to
745 // implement tailored support for the sc_dt::sc_int<W> class.
748 class sc_in<sc_dt::sc_int<W> > :
1011 // This class implements an input/output port whose target acts like an
1012 // sc_dt::sc_int<W> data value. It is derived from the sc_int_in. This class is a
1013 // specialization of the generic sc_inout class to implement tailored support
1014 // for the sc_dt::sc_int<W> class.
1017 class sc_inout<sc_dt::sc_int<W> > :
1346 // This class implements an output port whose target acts like an
1347 // sc_dt::sc_int<W> data value. This class is a derivation of sc_inout, since
1351 class sc_out<sc_dt::sc_int<W> > : public sc_inout<sc_dt::sc_int<W> >