reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

utils/unittest/googletest/src/gtest.cc
 3576   if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct))
 3579   return StreamableToString(time_struct.tm_year + 1900) + "-" +
 3580       String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" +
 3581       String::FormatIntWidth2(time_struct.tm_mday) + "T" +
 3582       String::FormatIntWidth2(time_struct.tm_hour) + ":" +
 3583       String::FormatIntWidth2(time_struct.tm_min) + ":" +
 3584       String::FormatIntWidth2(time_struct.tm_sec);