Home
last modified time | relevance | path

Searched refs:time_struct (Results 1 – 1 of 1) sorted by relevance

/ndk/sources/third_party/googletest/googletest/src/
Dgtest.cc3202 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601() local
3205 const struct tm* const time_struct = localtime(&seconds); // NOLINT in FormatEpochTimeInMillisAsIso8601() local
3207 if (time_struct == NULL) in FormatEpochTimeInMillisAsIso8601()
3211 return StreamableToString(time_struct->tm_year + 1900) + "-" + in FormatEpochTimeInMillisAsIso8601()
3212 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" + in FormatEpochTimeInMillisAsIso8601()
3213 String::FormatIntWidth2(time_struct->tm_mday) + "T" + in FormatEpochTimeInMillisAsIso8601()
3214 String::FormatIntWidth2(time_struct->tm_hour) + ":" + in FormatEpochTimeInMillisAsIso8601()
3215 String::FormatIntWidth2(time_struct->tm_min) + ":" + in FormatEpochTimeInMillisAsIso8601()
3216 String::FormatIntWidth2(time_struct->tm_sec); in FormatEpochTimeInMillisAsIso8601()