Lines Matching refs:class

193 class sc_signed_sigref;
198 // This class provides generic access to part selections for signals whose
199 // data type is sc_dt::sc_bigint<W>. This class serves as the base class for the
200 // sc_dt::sc_bigint<W> specialization of the sc_signal_in_if<T> class. The methods
201 // in this class may be over-ridden individually, those that are not overridden
203 // sc_bigint_sigref class.
206 // (1) Descriptions of the methods and operators in this class appear with
209 class sc_signed_part_if : virtual public sc_interface {
236 // This is the class specializations for the sc_signal_in_if<T> class to
241 // (1) Descriptions of the methods and operators in this class appear with
245 class sc_signal_in_if<sc_dt::sc_bigint<W> > : public sc_signed_part_if {
246 friend class sc_signed_sigref;
277 // Proxy class for sc_signal_uint bit and part selection.
279 class sc_signed_sigref : public sc_dt::sc_signed_subref_r
326 // This class implements a signal whose value acts like an sc_dt::sc_bigint<W> data
327 // value. This class is a specialization of the generic sc_signal class to
328 // implement tailored support for the sc_dt::sc_bigint<W> class.
331 // (1) Descriptions of the methods and operators in this class appear with
335 class sc_signal<sc_dt::sc_bigint<W> > :
924 // This class implements an input port whose target acts like an sc_dt::sc_bigint<W> data
925 // value. This class is a specialization of the generic sc_in class to
926 // implement tailored support for the sc_dt::sc_bigint<W> class.
929 class sc_in<sc_dt::sc_bigint<W> > :
1192 // This class implements an input/output port whose target acts like an
1193 // sc_dt::sc_bigint<W> data value. It is derived from the sc_signed_in. This class is a
1194 // specialization of the generic sc_inout class to implement tailored support
1195 // for the sc_dt::sc_bigint<W> class.
1198 class sc_inout<sc_dt::sc_bigint<W> > :
1527 // This class implements an output port whose target acts like an
1528 // sc_dt::sc_bigint<W> data value. This class is a derivation of sc_inout, since
1532 class sc_out<sc_dt::sc_bigint<W> > : public sc_inout<sc_dt::sc_bigint<W> >