Searched refs:strftime (Results 1 - 25 of 118) sorted by relevance

12345

/external/clang/utils/CIndex/
H A Dcompletion_logger_server.py4 from time import strftime namespace
33 f.write("\"time\": \"{0}\"".format(datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')))
/external/llvm/lib/Support/Windows/
H A DTimeValue.inc50 // FIXME: the windows version of strftime doesn't support %e
51 strftime(Buffer, 25, "%b %d %H:%M %Y", LT);
53 "Unexpected format in strftime()!");
/external/llvm/lib/Support/Unix/
H A DTimeValue.inc30 strftime(Buffer, 25, "%b %e %H:%M %Y", LT);
/external/chromium_org/third_party/android_testrunner/
H A Dlogger.py63 return "# %s: %s" % (datetime.datetime.now().strftime("%m/%d/%y %H:%M:%S"),
/external/chromium_org/tools/gyp/
H A DPRESUBMIT.py79 current_year = int(input_api.time.strftime('%Y'))
/external/stlport/stlport/stl/
H A D_ctime.h48 using _STLP_VENDOR_CSTD::strftime;
/external/clang/test/Sema/
H A Dattr-format.c15 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 format attribute requires 3rd parameter to be 0}}
/external/chromium/testing/gtest/scripts/
H A Dgen_gtest_pred_impl.py74 'today' : time.strftime('%m/%d/%Y'),
75 'year' : time.strftime('%Y'),
330 'today' : time.strftime('%m/%d/%Y'),
331 'year' : time.strftime('%Y'),
/external/chromium_org/testing/gtest/scripts/
H A Dgen_gtest_pred_impl.py74 'today' : time.strftime('%m/%d/%Y'),
75 'year' : time.strftime('%Y'),
330 'today' : time.strftime('%m/%d/%Y'),
331 'year' : time.strftime('%Y'),
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dasctime.c7 ** Avoid the temptation to punt entirely to strftime;
8 ** the output of strftime is supposed to be locale specific
37 ** we call a strftime variant that produces fewer characters for some years.
101 ** Use strftime's %Y to generate the year, to avoid overflow problems
103 ** Assume that strftime is unaffected by other out-of-range members
106 (void) strftime(year, sizeof year, "%Y", timeptr);
/external/chromium_org/third_party/libjingle/source/talk/
H A DPRESUBMIT.py60 current_year = int(input_api.time.strftime('%Y'))
/external/gtest/scripts/
H A Dgen_gtest_pred_impl.py74 'today' : time.strftime('%m/%d/%Y'),
75 'year' : time.strftime('%Y'),
330 'today' : time.strftime('%m/%d/%Y'),
331 'year' : time.strftime('%Y'),
/external/icu4c/tools/tzcode/
H A Dasctime.c7 ** Avoid the temptation to punt entirely to strftime;
8 ** the output of strftime is supposed to be locale specific
37 ** we call a strftime variant that produces fewer characters for some years.
101 ** Use strftime's %Y to generate the year, to avoid overflow problems
103 ** Assume that strftime is unaffected by other out-of-range members
106 (void) strftime(year, sizeof year, "%Y", timeptr);
/external/libvpx/libvpx/third_party/googletest/src/scripts/
H A Dgen_gtest_pred_impl.py74 '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/
H A Dgen_gtest_pred_impl.py74 'today' : time.strftime('%m/%d/%Y'),
75 'year' : time.strftime('%Y'),
332 'today' : time.strftime('%m/%d/%Y'),
333 'year' : time.strftime('%Y'),
/external/chromium_org/third_party/icu/source/tools/genren/
H A Dgenren.pl19 use POSIX qw(strftime);
71 $YEAR = strftime "%Y",localtime;
/external/chromium_org/third_party/icu/source/tools/toolutil/
H A Dwritesrc.c56 strftime(year, sizeof(year), "%Y", lt);
57 strftime(buffer, sizeof(buffer), "%Y-%m-%d", lt);
/external/icu4c/tools/genren/
H A Dgenren.pl19 use POSIX qw(strftime);
71 $YEAR = strftime "%Y",localtime;
/external/chromium_org/third_party/npapi/npspy/extern/nspr/md/
H A Dsunos4.h135 extern size_t strftime(char *, size_t, const char *, const struct tm *);
/external/chromium_org/v8/tools/testrunner/local/
H A Dverbose.py84 return time.strftime("%M:%S.", time.gmtime(d)) + ("%03i" % millis)
/external/chromium_org/media/tools/layout_tests/
H A Dlayouttest_analyzer.py307 datetime_string = start_time.strftime('%Y,%m,%d,%H,%M,%S')
451 start_time.strftime('%Y-%m-%d-%H'))
464 date = start_time.strftime('%Y-%m-%d-%H')
H A Dtest_expectations_history.py126 logs[i + 1].date).strftime('%Y-%m-%d %H:%M:%S'),
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dpresenceouttask.cc138 strftime(output, ARRAY_SIZE(output), "%Y%m%dT%H:%M:%S", current_time);
/external/chromium_org/third_party/icu/source/test/compat/
H A Dtzdate.c130 strftime(systime, sizeof(char) * 80, "%Y%m%d %I:%M %p", &ts);
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprwin16.h104 size_t (PR_CALLBACK *strftime)(char *s, size_t len, const char *fmt, const struct tm *p); member in struct:PRMethodCallbackStr

Completed in 496 milliseconds

12345