Lines Matching refs:string

65 // explicit conversion to character string
67 const std::string
70 return std::string( m_rep->to_string( SC_DEC, -1, SC_E ) );
73 const std::string
76 return std::string( m_rep->to_string( numrep, -1, SC_E ) );
79 const std::string
82 return std::string( m_rep->to_string( numrep, (w_prefix ? 1 : 0), SC_E ) );
85 const std::string
88 return std::string( m_rep->to_string( SC_DEC, -1, fmt ) );
91 const std::string
94 return std::string( m_rep->to_string( numrep, -1, fmt ) );
97 const std::string
100 return std::string( m_rep->to_string( numrep, (w_prefix ? 1 : 0), fmt ) );
104 const std::string
107 return std::string( m_rep->to_string( SC_DEC, -1, SC_E ) );
110 const std::string
113 return std::string( m_rep->to_string( SC_BIN, -1, SC_E ) );
116 const std::string
119 return std::string( m_rep->to_string( SC_OCT, -1, SC_E ) );
122 const std::string
125 return std::string( m_rep->to_string( SC_HEX, -1, SC_E ) );
140 std::string s;
507 // explicit conversion to character string
509 const std::string
512 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, SC_E ) );
515 const std::string
518 return std::string( sc_dt::to_string( m_val, numrep, -1, SC_E ) );
521 const std::string
524 return std::string( sc_dt::to_string( m_val, numrep, (w_prefix ? 1 : 0),
528 const std::string
531 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, fmt ) );
534 const std::string
537 return std::string( sc_dt::to_string( m_val, numrep, -1, fmt ) );
540 const std::string
543 return std::string( sc_dt::to_string( m_val, numrep, (w_prefix ? 1 : 0),
548 const std::string
551 return std::string( sc_dt::to_string( m_val, SC_DEC, -1, SC_E ) );
554 const std::string
557 return std::string( sc_dt::to_string( m_val, SC_BIN, -1, SC_E ) );
560 const std::string
563 return std::string( sc_dt::to_string( m_val, SC_OCT, -1, SC_E ) );
566 const std::string
569 return std::string( sc_dt::to_string( m_val, SC_HEX, -1, SC_E ) );
584 std::string s;