HomeSort by relevance Sort by last modified time
    Searched defs:today (Results 26 - 50 of 69) sorted by null

12 3

  /external/icu/icu4c/source/test/cintltst/
cdtrgtst.c 57 UDate today, d1; local
63 today = ucal_getNow();
84 fmdt = myFormatit(df, today);
86 log_verbose("today: %s\n", austrdup(fmdt));
96 todayS =myFormatit(df, today);
97 log_verbose("After the pattern is applied\n today: %s\n", austrdup(todayS) );
106 log_verbose("today: %s\n", austrdup(rt) );
cdattst.c 423 UDate today = 0.0; local
434 ucal_setDateTime(ucal, year, month, day, 18, 49, 0, &status); /* set to today at 18:49:00 */
435 today = ucal_getMillis(ucal, &status);
438 if ( U_FAILURE(status) || today == 0.0 ) {
439 log_data_err("Generate UDate for a specified time today fails, error %s - (Are you missing data?)\n", myErrorName(status) );
511 UDate dateToUse = today + (float)dayOffset*dayInterval;
1559 UDate yesterday, today = ucal_getNow(); local
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
ObjectStreamFieldTest.java 216 assertEquals(SerializableObject2.today, getField.get("d", null));
329 public static Date today = new Date(1172632429156l); field in class:SerializableObject2
338 putField.put("d", today);
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
MonthView.java 155 // If this view contains the today
159 // Which day is today [0-6] or -1 if no day is today
361 // Figure out what day today is
362 final Time today = new Time(Time.getCurrentTimezone()); local
363 today.setToNow();
381 if (sameDay(day, today)) {
408 private boolean sameDay(int day, Time today) {
409 return mYear == today.year &&
410 mMonth == today.month &
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmrgts.cpp 78 UDate today = Calendar::getNow(); local
79 logln((UnicodeString) "today: " + today);
96 fmtd = sdf->format(today, fmtd, pos);
97 logln("today: " + fmtd);
101 todayS = sdf->format(today, todayS, pos);
102 logln("today: " + todayS);
104 today = sdf->parse(todayS, status);
106 logln((UnicodeString)"today date: " + today);
    [all...]
dtfmttst.cpp 278 UDate today = Calendar::getNow(); local
286 cal->setTime(today, status);
311 sdf->format(today,fmtOffset, pos);
906 UDate today = Calendar::getNow(); local
    [all...]
  /external/python/cpython3/Lib/
datetime.py 665 today()
719 def today(cls): member in class:date
920 today = _ymd2ord(self._year, self._month, self._day)
922 week, day = divmod(today - week1monday, 7)
926 week, day = divmod(today - week1monday, 7)
928 if today >= _isoweek1monday(year+1):
    [all...]
  /frameworks/base/services/core/java/com/android/server/
GraphicsStatsService.java 298 long today = normalizeDate(System.currentTimeMillis()).getTimeInMillis(); local
304 if (buffer.mInfo.startTime < today) {
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 115 * The day of month for today, or -1 if the today is not in the current
815 // Figure out what day today is.
816 final Calendar today = Calendar.getInstance(); local
821 if (sameDay(day, today)) {
859 private boolean sameDay(int day, Calendar today) {
860 return mYear == today.get(Calendar.YEAR) && mMonth == today.get(Calendar.MONTH)
861 && day == today.get(Calendar.DAY_OF_MONTH);
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRegressionTest.java 60 Date today = cal.getTime(); local
61 logln("today: " + today);
67 fmtd = sdf.format(today, fmtd, pos);
68 logln("today: " + fmtd);
72 todayS = sdf.format(today, todayS, pos);
73 logln("today: " + todayS);
75 today = sdf.parse(todayS.toString());
76 logln("today date: " + today);
    [all...]
DateFormatTest.java 230 Date today = new Date(); local
237 cal.setTime(today);
264 fmtOffset = sdf.format(today, fmtOffset, pos);
1748 Date today = cal.getTime(); local
3788 Date today = cal.getTime(); local
4561 Date today = new Date(); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRegressionTest.java 57 Date today = cal.getTime(); local
58 logln("today: " + today);
64 fmtd = sdf.format(today, fmtd, pos);
65 logln("today: " + fmtd);
69 todayS = sdf.format(today, todayS, pos);
70 logln("today: " + todayS);
72 today = sdf.parse(todayS.toString());
73 logln("today date: " + today);
    [all...]
DateFormatTest.java 227 Date today = new Date(); local
234 cal.setTime(today);
261 fmtOffset = sdf.format(today, fmtOffset, pos);
1745 Date today = cal.getTime(); local
3785 Date today = cal.getTime(); local
4558 Date today = new Date(); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 597 * using) just happens today to effectively ignore the nitems argument
2586 int today = ymd_to_ord(year, GET_MONTH(self), GET_DAY(self)); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 597 * using) just happens today to effectively ignore the nitems argument
2586 int today = ymd_to_ord(year, GET_MONTH(self), GET_DAY(self)); local
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 597 * using) just happens today to effectively ignore the nitems argument
2586 int today = ymd_to_ord(year, GET_MONTH(self), GET_DAY(self)); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 1648 DayOfMonthDrawable today; local
    [all...]
  /external/python/cpython3/Modules/
_datetimemodule.c 613 * using) just happens today to effectively ignore the nitems argument
2777 int today = ymd_to_ord(year, GET_MONTH(self), GET_DAY(self)); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java 2662 int today = dses[0].day; local
    [all...]
  /external/testng/ant/3rdparty/
DTDDoc.jar 
  /external/guice/extensions/persist/lib/
hsqldb.jar 
  /external/annotation-tools/asmx/test/lib/
jd.xslt-1.5.5.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
ant-1.8.0.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 980 milliseconds

12 3