Lines Matching refs:class

183 class sc_unsigned_sigref;
188 // This class provides generic access to part selections for signals whose
189 // data type is sc_dt::sc_biguint<W>. This class serves as the base class for the
190 // sc_dt::sc_biguint<W> specialization of the sc_signal_in_if<T> class. The methods
191 // in this class may be over-ridden individually, those that are not overridden
193 // sc_unsigned_sigref class.
196 // (1) Descriptions of the methods and operators in this class appear with
199 class sc_unsigned_part_if : virtual public sc_interface {
226 // This is the class specializations for the sc_signal_in_if<T> class to
231 // (1) Descriptions of the methods and operators in this class appear with
235 class sc_signal_in_if<sc_dt::sc_biguint<W> > : public sc_unsigned_part_if {
236 friend class sc_unsigned_sigref;
267 // Proxy class for sc_signal_uint bit and part selection.
269 class sc_unsigned_sigref : public sc_dt::sc_unsigned_subref_r
316 // This class implements a signal whose value acts like an sc_dt::sc_biguint<W> data
317 // value. This class is a specialization of the generic sc_signal class to
318 // implement tailored support for the sc_dt::sc_biguint<W> class.
321 // (1) Descriptions of the methods and operators in this class appear with
325 class sc_signal<sc_dt::sc_biguint<W> > :
920 // This class implements an input port whose target acts like an sc_dt::sc_biguint<W> data
921 // value. This class is a specialization of the generic sc_in class to
922 // implement tailored support for the sc_dt::sc_biguint<W> class.
925 class sc_in<sc_dt::sc_biguint<W> > :
1188 // This class implements an input/output port whose target acts like an
1189 // sc_dt::sc_biguint<W> data value. It is derived from the sc_unsigned_in. This class is a
1190 // specialization of the generic sc_inout class to implement tailored support
1191 // for the sc_dt::sc_biguint<W> class.
1194 class sc_inout<sc_dt::sc_biguint<W> > :
1524 // This class implements an output port whose target acts like an
1525 // sc_dt::sc_biguint<W> data value. This class is a derivation of sc_inout, since
1529 class sc_out<sc_dt::sc_biguint<W> > : public sc_inout<sc_dt::sc_biguint<W> >