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

/external/chromium_org/content/zygote/
H A Dzygote_main_linux.cc236 static struct tm time_struct; local
238 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
240 return &time_struct;
260 static struct tm time_struct; local
262 ProxyLocaltimeCallToBrowser(*timep, &time_struct, timezone_string,
264 return &time_struct;
/external/chromium_org/testing/gtest/src/
H A Dgtest.cc3510 struct tm time_struct; local
3512 if (localtime_s(&time_struct, &seconds) != 0)
3515 if (localtime_r(&seconds, &time_struct) == NULL)
3520 return StreamableToString(time_struct.tm_year + 1900) + "-" +
3521 String::FormatIntWidth2(time_struct.tm_mon + 1) + "-" +
3522 String::FormatIntWidth2(time_struct.tm_mday) + "T" +
3523 String::FormatIntWidth2(time_struct.tm_hour) + ":" +
3524 String::FormatIntWidth2(time_struct.tm_min) + ":" +
3525 String::FormatIntWidth2(time_struct.tm_sec);
/external/gtest/src/
H A Dgtest.cc3228 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
3231 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
3233 if (time_struct == NULL)
3237 return StreamableToString(time_struct->tm_year + 1900) + "-" +
3238 String::FormatIntWidth2(time_struct->tm_mon + 1) + "-" +
3239 String::FormatIntWidth2(time_struct->tm_mday) + "T" +
3240 String::FormatIntWidth2(time_struct->tm_hour) + ":" +
3241 String::FormatIntWidth2(time_struct->tm_min) + ":" +
3242 String::FormatIntWidth2(time_struct->tm_sec);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc4712 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
4715 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
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);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc4712 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
4715 const struct tm* const time_struct = localtime(&seconds); // NOLINT local
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);

Completed in 515 milliseconds