Home
last modified time | relevance | path

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

/llvm-project/third-party/unittest/googletest/src/
H A Dgtest.cc4138 struct tm time_struct; in FormatEpochTimeInMillisAsIso8601() local
4139 if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct)) in FormatEpochTimeInMillisAsIso8601()
4142 return StreamableToString(time_struct.tm_year + 1900) + "-" + in FormatEpochTimeInMillisAsIso8601()
4143 String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" + in FormatEpochTimeInMillisAsIso8601()
4144 String::FormatIntWidth2(time_struct.tm_mday) + "T" + in FormatEpochTimeInMillisAsIso8601()
4145 String::FormatIntWidth2(time_struct.tm_hour) + ":" + in FormatEpochTimeInMillisAsIso8601()
4146 String::FormatIntWidth2(time_struct.tm_min) + ":" + in FormatEpochTimeInMillisAsIso8601()
4147 String::FormatIntWidth2(time_struct.tm_sec) + "." + in FormatEpochTimeInMillisAsIso8601()
4585 struct tm time_struct; in FormatEpochTimeInMillisAsRFC3339() local
4586 if (!PortableLocaltime(static_cast<time_t>(ms / 1000), &time_struct)) in FormatEpochTimeInMillisAsRFC3339()
[all …]