HomeSort by relevance Sort by last modified time
    Searched defs:today (Results 1 - 15 of 15) sorted by null

  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 53 // Build the widget update for today
84 Time today = new Time(); local
85 today.setToNow();
87 // Build the page title for today, such as "March 21"
89 monthNames[today.month], today.monthDay);
93 // Try querying the Wiktionary API for today's word
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 54 // Build the widget update for today
73 Time today = new Time(); local
74 today.setToNow();
76 // Build today's page title, like "Wiktionary:Word of the day/March 21"
78 monthNames[today.month], today.monthDay);
83 // Try querying the Wiktionary API for today's word
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 139 Date today = new Date(); local
140 if (certificate.getNotAfter().compareTo(today) < 0) {
145 if (certificate.getNotBefore().compareTo(today) > 0) {
  /packages/apps/AlarmClock/src/com/android/alarmclock/
Alarm.java 321 * returns number of days from today until next alarm
322 * @param c must be set to today
329 int today = (c.get(Calendar.DAY_OF_WEEK) + 5) % 7; local
334 day = (today + dayCount) % 7;
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 333 * returns number of days from today until next alarm
334 * @param c must be set to today
341 int today = (c.get(Calendar.DAY_OF_WEEK) + 5) % 7; local
346 day = (today + dayCount) % 7;
DeskClock.java 619 Calendar today = Calendar.getInstance(); local
620 today.set(Calendar.HOUR_OF_DAY, 0);
621 today.set(Calendar.MINUTE, 0);
622 today.set(Calendar.SECOND, 0);
623 today.add(Calendar.DATE, 1);
624 long alarmTimeUTC = today.getTimeInMillis();
    [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
ObjectStreamFieldTest.java 415 assertEquals(SerializableObject2.today, getField.get("d", null));
519 public static Date today = new Date(1172632429156l); field in class:SerializableObject2
528 putField.put("d", today);
  /external/icu4c/test/cintltst/
cdattst.c 398 UDate today = 0.0; local
409 ucal_setDateTime(ucal, year, month, day, 18, 49, 0, &status); /* set to today at 18:49:00 */
410 today = ucal_getMillis(ucal, &status);
413 if ( U_FAILURE(status) || today == 0.0 ) {
414 log_err("Generate UDate for a specified time today fails, error %s\n", myErrorName(status) );
486 UDate dateToUse = today + (float)dayOffset*dayInterval;
    [all...]
cdtrgtst.c 55 UDate today, d1; local
61 today = ucal_getNow();
82 fmdt = myFormatit(df, today);
84 log_verbose("today: %s\n", austrdup(fmdt));
94 todayS =myFormatit(df, today);
95 log_verbose("After teh pattern is applied\n today: %s\n", austrdup(todayS) );
104 log_verbose("today: %s\n", austrdup(rt) );
  /packages/apps/Email/src/com/android/email/
Utility.java 222 * Returns true if the specified date is within today. Returns false otherwise.
228 Date today = new Date(); local
229 if (date.getYear() == today.getYear() &&
230 date.getMonth() == today.getMonth() &&
231 date.getDate() == today.getDate()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 232 Calendar today = Calendar.getInstance(); local
234 if (expirationCalendar.before(today)) {
253 int thisYear = today.get(Calendar.YEAR);
  /external/icu4c/test/intltest/
dtfmrgts.cpp 69 UDate today = Calendar::getNow(); local
70 logln((UnicodeString) "today: " + today);
86 fmtd = sdf->format(today, fmtd, pos);
87 logln("today: " + fmtd);
91 todayS = sdf->format(today, todayS, pos);
92 logln("today: " + todayS);
94 today = sdf->parse(todayS, status);
96 logln((UnicodeString)"today date: " + today);
    [all...]
dtfmttst.cpp 124 UDate today = Calendar::getNow(); local
132 cal->setTime(today, status);
157 sdf->format(today,fmtOffset, pos);
671 UDate today = Calendar::getNow(); local
672 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec);
674 logln((UnicodeString)"Test Date: " + dateToString(today));
680 tryPattern(*sdf, today, 0, expected);
681 tryPattern(*sdf, today, "G yyyy DDD", expected);
    [all...]
  /frameworks/base/core/java/android/content/
SyncManager.java 1160 int today = dses[0].day; local
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 697 milliseconds