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

1 2 3 4 5 6 7 8

  /bionic/libc/tzcode/
asctime.c 97 if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR)
99 else mn = mon_name[timeptr->tm_mon];
strftime.c 227 pt = _add((t->tm_mon < 0 ||
228 t->tm_mon >= MONSPERYEAR) ?
229 "?" : locale->standalone_month[t->tm_mon],
232 pt = _add((t->tm_mon < 0 ||
233 t->tm_mon >= MONSPERYEAR) ?
234 "?" : locale->month[t->tm_mon],
240 pt = _add((t->tm_mon < 0 ||
241 t->tm_mon >= MONSPERYEAR) ?
242 "?" : locale->mon[t->tm_mon],
369 pt = _conv(t->tm_mon + 1
    [all...]
  /external/icu4c/tools/tzcode/
asctime.c 97 if (timeptr->tm_mon < 0 || timeptr->tm_mon >= MONSPERYEAR)
99 else mn = mon_name[timeptr->tm_mon];
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_time.c 47 time_ptr->month = tm_t->tm_mon + 1;
  /frameworks/native/libs/utils/tests/
ZipFileRO_test.cpp 48 EXPECT_EQ(6, t.tm_mon)
  /frameworks/av/media/mtp/
MtpUtils.cpp 58 tm.tm_mon = month - 1; // mktime uses months in 0 - 11 range
76 tm.tm_mon + 1, // localtime_r uses months in 0 - 11 range
  /frameworks/rs/scriptc/
rs_time.rsh 41 * tm_mon - Months since January. This ranges from 0 to 11.
54 int tm_mon; ///< month
  /prebuilts/sdk/renderscript/include/
rs_time.rsh 41 * tm_mon - Months since January. This ranges from 0 to 11.
54 int tm_mon; ///< month
  /frameworks/base/core/jni/
Time.cpp 16 t.t.tm_year+1900, t.t.tm_mon+1, t.t.tm_mday,
27 t.tm_mon = 0;
51 COMPARE_FIELD(tm_mon);
124 n = t.tm_mon+1;
164 t.tm_year+1900, t.tm_mon+1, t.tm_mday, t.tm_hour, t.tm_min,
TimeUtils.h 76 this->t.tm_mon = mon;
  /external/openssl/crypto/
o_time.c 206 result->tm_mon = time_values.month - 1;
266 time_month = tm->tm_mon + 1;
287 tm->tm_mon = time_month - 1;
356 (tm1.tm_mon == tm2.tm_mon) &&
364 tm2.tm_mday, tm2.tm_mon + 1, tm2.tm_year + 1900,
367 tm1.tm_mday, tm1.tm_mon + 1, tm1.tm_year + 1900,
  /external/stlport/test/unit/
time_facets_test.cpp 62 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
92 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
105 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
145 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
175 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
time_facets_test.cpp 62 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
92 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
105 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
145 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
175 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
    [all...]
  /ndk/tests/device/test-stlport/unit/
time_facets_test.cpp 62 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
92 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
105 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
145 CPPUNIT_ASSERT( other.tm_mon == xmas.tm_mon );
175 CPPUNIT_ASSERT( yet_more.tm_mon == xmas.tm_mon );
    [all...]
  /external/ppp/pppd/plugins/radius/
util.c 42 tm->tm_mon = i;
  /external/skia/src/ports/
SkTime_Unix.cpp 25 dt->fMonth = SkToU8(tstruct->tm_mon + 1);
  /external/bluetooth/glib/glib/
gtimer.c 270 if (tm->tm_mon < 0 || tm->tm_mon > 11)
275 retval += days_before[tm->tm_mon] + tm->tm_mday - 1;
277 if (tm->tm_year % 4 == 0 && tm->tm_mon < 2)
328 tm.tm_mon = strtoul (iso_date, (char **)&iso_date, 10) - 1;
339 tm.tm_mon = (val % 10000) / 100 - 1;
444 tm->tm_mon + 1,
458 tm->tm_mon + 1,
  /external/webkit/Source/WebCore/html/
FTPDirectoryDocument.cpp 232 if (fileTime.tm_mon == now.tm_mon) {
239 if (now.tm_mday == 1 && (now.tm_mon == fileTime.tm_mon + 1 || (now.tm_mon == 0 && fileTime.tm_mon == 11)) &&
240 wasLastDayOfMonth(fileTime.tm_year, fileTime.tm_mon, fileTime.tm_mday))
244 if (fileTime.tm_year == now.tm_year - 1 && fileTime.tm_mon == 12 && fileTime.tm_mday == 31 && now.tm_mon == 1 && now.tm_mday == 1)
249 int month = fileTime.tm_mon;
    [all...]
  /bionic/libc/bionic/
time64.c 238 days += julian_days_by_month[IS_LEAP(orig_year)][date->tm_mon];
264 assert(tm->tm_mday <= days_in_month[IS_LEAP(tm->tm_year)][tm->tm_mon]);
266 assert(tm->tm_mon >= 0);
267 assert(tm->tm_mon <= 11);
377 dest->tm_mon = src->tm_mon;
409 dest->tm_mon = src->tm_mon;
639 p->tm_mon = v_tm_mon;
707 month_diff = local_tm->tm_mon - gm_tm.tm_mon
    [all...]
  /system/core/libcutils/
tzstrftime.c 177 pt = _add((t->tm_mon < 0 ||
178 t->tm_mon >= MONSPERYEAR) ?
179 "?" : Locale->standalone_month[t->tm_mon],
182 pt = _add((t->tm_mon < 0 ||
183 t->tm_mon >= MONSPERYEAR) ?
184 "?" : Locale->month[t->tm_mon],
190 pt = _add((t->tm_mon < 0 ||
191 t->tm_mon >= MONSPERYEAR) ?
192 "?" : Locale->mon[t->tm_mon],
319 pt = _conv(t->tm_mon + 1
    [all...]
  /bionic/libc/kernel/common/linux/
rtc.h 27 int tm_mon; member in struct:rtc_time
  /development/ndk/platforms/android-3/include/linux/
rtc.h 20 int tm_mon; member in struct:rtc_time
  /external/e2fsprogs/debugfs/
util.c 225 sscanf(arg, "%4d%2d%2d%2d%2d%2d", &ts.tm_year, &ts.tm_mon,
228 ts.tm_mon -= 1;
229 if (ts.tm_year < 0 || ts.tm_mon < 0 || ts.tm_mon > 11 ||
  /prebuilts/gcc/darwin-x86/mips/mipsel-linux-android-4.4.3/sysroot/usr/include/linux/
rtc.h 20 int tm_mon; member in struct:rtc_time
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
rtc.h 25 int tm_mon; member in struct:rtc_time

Completed in 590 milliseconds

1 2 3 4 5 6 7 8