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

1 2 3 4 5

  /system/extras/tests/bionic/libc/common/
test_strftime_2039.c 1 /* this tests tries to call strftime() with a date > 2038
17 if (strftime(buff, sizeof buff, "%s", &tm) == 0) {
18 fprintf(stderr, "strftime() returned 0\n");
30 if (strftime(buff, sizeof buff, "%c", &tm) == 0) {
31 fprintf(stderr, "strftime() returned 0\n");
  /bionic/libstdc++/include/
ctime 58 using ::strftime;
  /ndk/sources/cxx-stl/system/include/
ctime 58 using ::strftime;
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/
ctime 56 using ::strftime;
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/
ctime 56 using ::strftime;
  /system/extras/tests/bionic/libstdc++/
test_ctime.cpp 71 #ifdef strftime
83 using std::strftime;
  /external/stlport/stlport/stl/
_ctime.h 48 using _STLP_VENDOR_CSTD::strftime;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_ctime.h 48 using _STLP_VENDOR_CSTD::strftime;
  /external/clearsilver/util/test/
date_test.c 31 strftime(buf, sizeof(buf), "%Y/%m/%d %H:%M:%S", &ttm);
41 strftime(buf, sizeof(buf), "%Y/%m/%d %H:%M:%S", &ttm);
  /external/webkit/WebKitTools/Scripts/
roll-over-ChangeLogs 34 date_suffix = Date.today.strftime("-%Y-%m-%d")
  /external/clearsilver/python/examples/base/
log.py 45 time_stamp = time.strftime("%m/%d %T", time.localtime(t))
91 log_line = log_line + "[" + time.strftime("%m/%d %T", time.localtime(t)) + "] "
  /system/core/toolbox/
date.c 84 strftime(strbuf, sizeof(strbuf),
89 strftime(strbuf, sizeof(strbuf),
  /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
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);
  /development/simulator/wrapsim/
Log.c 41 //strftime(timeBuf, sizeof(timeBuf), "%m-%d %H:%M:%S", ptm);
42 strftime(timeBuf, sizeof(timeBuf), "%H:%M:%S", ptm);
  /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/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/gtest/scripts/
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/icu4c/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/protobuf/gtest/scripts/
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'),
  /system/extras/tests/bionic/libc/other/
test_timer_create.c 42 strftime(p, sizeof(p), "%T", localtime(&t));
test_timer_create2.c 42 strftime(p, sizeof(p), "%T", localtime(&t));
test_timer_create3.c 50 strftime(p, sizeof(p), "%T", localtime(&t));
  /external/chromium/third_party/icu/source/tools/genren/
genren.pl 19 use POSIX qw(strftime);
72 $YEAR = strftime "%Y",localtime;
  /external/chromium/third_party/icu/source/tools/toolutil/
writesrc.c 56 strftime(year, sizeof(year), "%Y", lt);
57 strftime(buffer, sizeof(buffer), "%Y-%m-%d", lt);

Completed in 1341 milliseconds

1 2 3 4 5