Lines Matching refs:setw
203 stream_ << std::setfill('0') << std::setw(2) << local_time.wMonth
204 << std::setw(2) << local_time.wDay << '/' << std::setw(2)
205 << local_time.wHour << std::setw(2) << local_time.wMinute
206 << std::setw(2) << local_time.wSecond << '.' << std::setw(3)
215 stream_ << std::setfill('0') << std::setw(2) << 1 + tm_time->tm_mon
216 << std::setw(2) << tm_time->tm_mday << '/' << std::setw(2)
217 << tm_time->tm_hour << std::setw(2) << tm_time->tm_min << std::setw(2)
218 << tm_time->tm_sec << '.' << std::setw(6) << tv.tv_usec << ':';