Searched refs:strftime (Results 1 – 25 of 259) sorted by relevance
1234567891011
/external/curl/docs/libcurl/ |
D | mksymbolsmanpage.pl | 27 my $date = strftime "%b %e, %Y", localtime; 28 my $year = strftime "%Y", localtime;
|
/external/google-benchmark/src/ |
D | walltime.cc | 235 written = std::strftime(storage, sizeof(storage), "%x %X", ::localtime(&now)); in DateTimeString() 240 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); in DateTimeString() 244 written = std::strftime(storage, sizeof(storage), "%x %X", ::gmtime(&now)); in DateTimeString() 249 written = std::strftime(storage, sizeof(storage), "%F %T", &timeinfo); in DateTimeString()
|
/external/clang/utils/CIndex/ |
D | completion_logger_server.py | 4 from time import strftime 33 f.write("\"time\": \"{0}\"".format(datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')))
|
/external/google-breakpad/src/testing/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 74 'today' : time.strftime('%m/%d/%Y'), 75 'year' : time.strftime('%Y'), 330 'today' : time.strftime('%m/%d/%Y'), 331 'year' : time.strftime('%Y'),
|
/external/protobuf/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 74 'today' : time.strftime('%m/%d/%Y'), 75 'year' : time.strftime('%Y'), 332 'today' : time.strftime('%m/%d/%Y'), 333 'year' : time.strftime('%Y'),
|
/external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/ |
D | gen_gtest_pred_impl.py | 74 'today' : time.strftime('%m/%d/%Y'), 75 'year' : time.strftime('%Y'), 330 'today' : time.strftime('%m/%d/%Y'), 331 'year' : time.strftime('%Y'),
|
/external/toybox/toys/posix/ |
D | date.c | 72 strftime(toybuf, sizeof(toybuf), fmt, &tm0); 74 strftime(toybuf + len, sizeof(toybuf) - len, fmt, &tm1); 219 if (!strftime(toybuf, sizeof(toybuf), format_string, &tm)) in date_main()
|
/external/libcxx/include/ |
D | ctime | 40 size_t strftime(char* restrict s, size_t maxsize, const char* restrict format, 70 using ::strftime;
|
/external/chromium-trace/catapult/telemetry/telemetry/internal/results/ |
D | html_output_formatter.py | 32 return dt.strftime('%Y-%m-%dT%H:%M:%S.%f') 36 return dt.strftime('%Y-%m-%d %H:%M:%S') 177 file_name = 'html-results/results-%s' % datetime.datetime.now().strftime(
|
D | html2_output_formatter.py | 30 datetime.datetime.now().strftime('%Y-%m-%d_%H-%M-%S'))
|
/external/clang/test/Sema/ |
D | attr-format.c | 15 void y(char *str) __attribute__((format(strftime, 1,0))); // no-error 16 void z(char *str, int c, ...) __attribute__((format(strftime, 1,2))); // expected-error {{strftime …
|
/external/libvncserver/utils/ |
D | git2cl.pl | 340 print (strftime "%Y-%m-%d $author\n\n", @date); 369 print (strftime "%Y-%m-%d $author\n\n", @date);
|
/external/chromium-trace/catapult/third_party/Paste/paste/ |
D | progress.py | 191 retval = { 'started': time.strftime("%Y-%m-%d %H:%M:%S", 200 retval['finished'] = time.strftime("%Y:%m:%d %H:%M:%S",
|
/external/autotest/server/cros/chaos_lib/ |
D | chaos_log_analyzer.py | 95 (time.strftime(self.LOG_TIMESTAMP_FORMAT, timestamp)) 104 (time.strftime(self.LOG_TIMESTAMP_FORMAT, new_timestamp))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/emr/ |
D | connection.py | 131 params['CreatedAfter'] = created_after.strftime( 134 params['CreatedBefore'] = created_before.strftime( 189 params['CreatedAfter'] = created_after.strftime( 192 params['CreatedBefore'] = created_before.strftime(
|
/external/icu/icu4c/source/tools/toolutil/ |
D | writesrc.c | 57 strftime(year, sizeof(year), "%Y", lt); in usrc_createWithHeader() 59 strftime(buffer, sizeof(buffer), "%Y-%m-%d", lt); in usrc_createWithHeader()
|
/external/chromium-trace/catapult/third_party/flot/ |
D | jquery.flot.time.js | 33 if (typeof d.strftime == "function") { 34 return d.strftime(fmt); 125 if (d.strftime != undefined) {
|
D | jquery.flot.time.min.js | 7 …strftime=="function"){return d.strftime(fmt)}var leftPad=function(n,pad){n=""+n;pad=""+(pad==null?…
|
/external/autotest/client/cros/bluetooth/ |
D | bluetooth_semiauto_helper.py | 298 f.write('%s: Starting btmon\n' % time.strftime(_TIME_FORMAT)) 323 f.write('%s: %s\n' % (time.strftime(_TIME_FORMAT), message)) 332 f.write('%s: %s\n' % (time.strftime(_TIME_FORMAT), message))
|
/external/autotest/scheduler/ |
D | drone_logging_config.py | 34 return '%s.log.%s' % (base_name, time.strftime('%Y-%m-%d'))
|
/external/robolectric/v1/ |
D | update-downloads.rb | 27 … download_html += " <td class=\"date\">#{File.mtime(f).strftime("%Y/%m/%d %H:%M:%S %Z")}</td>\n"
|
/external/webrtc/webrtc/ |
D | PRESUBMIT.py | 12 current_year = int(input_api.time.strftime('%Y'))
|
/external/webrtc/tools/ |
D | PRESUBMIT.py | 12 current_year = int(input_api.time.strftime('%Y'))
|
/external/libxml2/vms/ |
D | config.vms | 5 /* Define if you have the strftime function. */ 51 /* Define if you have the strftime function. */ 111 /* Define to 1 if you have the `strftime' function. */
|
/external/autotest/client/common_lib/ |
D | time_utils.py | 64 int(epoch_time)).strftime(fmt_string)
|
1234567891011