HomeSort by relevance Sort by last modified time
    Searched refs:strftime (Results 1 - 25 of 138) sorted by null

1 2 3 4 5 6

  /external/chromium_org/tools/profile_chrome/
util.py 8 return time.strftime('%Y-%m-%d-%H%M%S', time.localtime())
  /bionic/libc/bionic/
strftime_l.cpp 33 return strftime(s, max, format, tm);
  /external/chromium_org/chrome/installer/tools/
setup_timer.py 74 time.strftime("%x %X", time.localtime()), current_stage,
79 time.strftime("%x %X", time.localtime()), current_stage,
88 time.strftime("%x %X", time.localtime()), new_stage)
92 time.strftime("%x %X", time.localtime()))
96 time.strftime("%x %X", time.localtime()))
  /bionic/libstdc++/include/
ctime 58 using ::strftime;
  /external/clang/utils/CIndex/
completion_logger_server.py 4 from time import strftime namespace
33 f.write("\"time\": \"{0}\"".format(datetime.datetime.utcnow().strftime('%Y-%m-%d %H:%M:%S')))
  /external/chromium_org/third_party/webrtc/
PRESUBMIT.py 12 current_year = int(input_api.time.strftime('%Y'))
  /external/clang/test/Sema/
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 format attribute requires 3rd parameter to be 0}}
  /bionic/libc/tzcode/
asctime.c 7 ** Avoid the temptation to punt entirely to strftime;
8 ** the output of strftime is supposed to be locale specific
31 ** we call a strftime variant that produces fewer characters for some years.
97 ** Use strftime's %Y to generate the year, to avoid overflow problems
99 ** Assume that strftime is unaffected by other out-of-range members
102 (void) strftime(year, sizeof year, "%Y", timeptr);
  /development/ndk/platforms/android-L/include/
time.h 77 extern size_t strftime(char*, size_t, const char*, const struct tm*) __LIBC_ABI_PUBLIC__;
  /development/testrunner/
logger.py 63 return "# %s: %s" % (datetime.datetime.now().strftime("%m/%d/%y %H:%M:%S"),
  /development/tools/axl/
log.py 34 return "%s:%.2d" % (time.strftime('%m/%d/%Y %H:%M:%S',
  /external/chromium_org/testing/gtest/scripts/
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/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/
pywebsocket.py 59 time_str = time.strftime('%d%b%Y-%H%M%S')
  /external/chromium_org/third_party/android_testrunner/
logger.py 63 return "# %s: %s" % (datetime.datetime.now().strftime("%m/%d/%y %H:%M:%S"),
  /external/chromium_org/third_party/icu/source/tools/tzcode/
asctime.c 7 ** 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/tools/gyp/
PRESUBMIT.py 77 current_year = int(input_api.time.strftime('%Y'))
  /external/deqp/framework/delibs/scripts/
update-copyright-year.py 11 COPYRIGHT_REPLACEMENT = r'Copyright (C) \1-' + time.strftime("%Y") + r' drawElements Ltd.'
  /external/icu/icu4c/source/tools/tzcode/
asctime.c 7 ** 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/libcxx/test/depr/depr.c.headers/
time_h.pass.cpp 39 static_assert((std::is_same<decltype(strftime(c1,s,c2,&tmv)), size_t>::value), "");
  /external/libcxx/test/language.support/support.runtime/
ctime.pass.cpp 39 static_assert((std::is_same<decltype(std::strftime(c1,s,c2,&tm)), std::size_t>::value), "");
  /external/libcxx/test/utilities/date.time/
tested_elsewhere.pass.cpp 36 static_assert((std::is_same<decltype(std::strftime(str,s,"",&tm)), std::size_t>::value), "");
  /external/chromium_org/tools/telemetry/telemetry/results/
html_output_formatter.py 53 return dt.strftime('%Y-%m-%dT%H:%M:%S.%f')
127 file_name = 'html-results/results-%s' % datetime.datetime.now().strftime(
  /bionic/libc/include/
time.h 78 extern size_t strftime(char*, size_t, const char*, const struct tm*) __LIBC_ABI_PUBLIC__;
  /development/ndk/platforms/android-3/include/
time.h 80 extern size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);
  /development/ndk/platforms/android-8/include/
time.h 80 extern size_t strftime(char *s, size_t max, const char *format, const struct tm *tm);

Completed in 1751 milliseconds

1 2 3 4 5 6