Lines Matching refs:date
633 std::stringstream date; in ToGmtTime() local
653 date << tmbuff << " GMT"; in ToGmtTime()
655 date.imbue(std::locale::classic()); in ToGmtTime()
656 date << std::put_time(&tm, "%a, %d %b %Y %H:%M:%S GMT"); in ToGmtTime()
658 return date.str(); in ToGmtTime()
663 std::stringstream date; in ToUtcTime() local
673 date << tmbuff; in ToUtcTime()
675 date.imbue(std::locale::classic()); in ToUtcTime()
676 date << std::put_time(&tm, "%Y-%m-%dT%X.000Z"); in ToUtcTime()
678 return date.str(); in ToUtcTime()
683 const char* date = t.c_str(); in UtcToUnixTime() local
687 auto result = sscanf(date, "%4d-%2d-%2dT%2d:%2d:%2d.%dZ", in UtcToUnixTime()