Lines Matching refs:class

179 class sc_uint_sigref;
184 // This class provides generic access to part selections for signals whose
185 // data type is sc_dt::sc_uint<W>. This class serves as the base class for the
186 // sc_dt::sc_uint<W> specialization of the sc_signal_in_if<T> class. The methods
187 // in this class may be over-ridden individually, those that are not overridden
189 // sc_uint_sigref class.
192 // (1) Descriptions of the methods and operators in this class appear with
195 class sc_uint_part_if : virtual public sc_interface {
218 // This is the class specializations for the sc_signal_in_if<T> class to
223 // (1) Descriptions of the methods and operators in this class appear with
227 class sc_signal_in_if<sc_dt::sc_uint<W> > : public sc_uint_part_if {
228 friend class sc_uint_sigref;
259 // Proxy class for sc_signal_uint bit and part selection.
261 class sc_uint_sigref : public sc_dt::sc_uint_subref_r
308 // This class implements a signal whose value acts like an sc_dt::sc_uint<W> data
309 // value. This class is a specialization of the generic sc_signal class to
310 // implement tailored support for the sc_dt::sc_uint<W> class.
313 // (1) Descriptions of the methods and operators in this class appear with
317 class sc_signal<sc_dt::sc_uint<W> > :
798 // This class implements an input port whose target acts like an sc_dt::sc_uint<W> data
799 // value. This class is a specialization of the generic sc_in class to
800 // implement tailored support for the sc_dt::sc_uint<W> class.
803 class sc_in<sc_dt::sc_uint<W> > :
1068 // This class implements an input/output port whose target acts like an
1069 // sc_dt::sc_uint<W> data value. It is derived from the sc_uint_in. This class is a
1070 // specialization of the generic sc_inout class to implement tailored support
1071 // for the sc_dt::sc_uint<W> class.
1074 class sc_inout<sc_dt::sc_uint<W> > :
1402 // This class implements an output port whose target acts like an
1403 // sc_dt::sc_uint<W> data value. This class is a derivation of sc_inout, since
1407 class sc_out<sc_dt::sc_uint<W> > : public sc_inout<sc_dt::sc_uint<W> >