Lines Matching refs:to_string
102 ss << std::to_string(tmPtr->tm_year + yearStart) << "."; in GetLogFileName()
103 ss << std::to_string(tmPtr->tm_mon + monthStart) << "."; in GetLogFileName()
104 ss << std::to_string(tmPtr->tm_mday) << "_"; in GetLogFileName()
105 ss << std::to_string(tmPtr->tm_hour) << "."; in GetLogFileName()
106 ss << std::to_string(tmPtr->tm_min) << "."; in GetLogFileName()
107 ss << std::to_string(tmPtr->tm_sec) << ".hhlog"; in GetLogFileName()
123 ss << std::to_string(tmPtr->tm_year + yearStart) << "-"; in GetFormatTime()
124 ss << std::to_string(tmPtr->tm_mon + monthStart) << "-"; in GetFormatTime()
125 ss << std::to_string(tmPtr->tm_mday) << " "; in GetFormatTime()
126 ss << std::to_string(tmPtr->tm_hour) << ":"; in GetFormatTime()
127 ss << std::to_string(tmPtr->tm_min) << ":"; in GetFormatTime()
128 ss << std::to_string(tmPtr->tm_sec); in GetFormatTime()