Home | History | Annotate | Download | only in gtest

Lines Matching refs:time_struct

4712   const struct tm* const time_struct = localtime(&seconds);  // NOLINT
4715 const struct tm* const time_struct = localtime(&seconds); // NOLINT
4717 if (time_struct == NULL)
4721 return StreamableToString(time_struct->tm_year + 1900) + "-" +
4722 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" +
4723 String::FormatIntWidth2(time_struct->tm_mday) + "T" +
4724 String::FormatIntWidth2(time_struct->tm_hour) + ":" +
4725 String::FormatIntWidth2(time_struct->tm_min) + ":" +
4726 String::FormatIntWidth2(time_struct->tm_sec);