/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
|
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/ |
DownloadAdapter.java | 127 Calendar today = new GregorianCalendar(); local 128 today.set(Calendar.HOUR_OF_DAY, 0); 129 today.set(Calendar.MINUTE, 0); 130 today.set(Calendar.SECOND, 0); 131 today.set(Calendar.MILLISECOND, 0); 132 return today.getTime();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/ |
BuildPreferencePage.java | 143 Date today = new Date(); local 144 if (certificate.getNotAfter().compareTo(today) < 0) { 149 if (certificate.getNotBefore().compareTo(today) > 0) {
|
/packages/apps/DeskClock/src/com/android/deskclock/ |
DeskClock.java | 448 Calendar today = Calendar.getInstance(); local 449 today.set(Calendar.HOUR_OF_DAY, 0); 450 today.set(Calendar.MINUTE, 0); 451 today.set(Calendar.SECOND, 0); 452 today.add(Calendar.DATE, 1); 453 long alarmTimeUTC = today.getTimeInMillis();
|
Alarm.java | 345 * returns number of days from today until next alarm 346 * @param c must be set to today 353 int today = (c.get(Calendar.DAY_OF_WEEK) + 5) % 7; local 358 day = (today + dayCount) % 7;
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeekView.java | 139 // If this view contains the today 143 // Which day is today [0-6] or -1 if no day is today 155 // The timezone to display times/dates in (used for determining when Today 273 // Figure out what day today is 274 Time today = new Time(tz); local 275 today.setToNow(); 292 if (time.year == today.year && time.yearDay == today.yearDay) {
|
/packages/apps/Calendar/src/com/android/calendar/alerts/ |
AlertReceiver.java | 167 // 2) No date for today 174 int today = Time.getJulianDay(time.toMillis(false), time.gmtoff); local 188 if (eventDay > today + 1) { 203 if (eventDay == today + 1) {
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/ |
KeyCheckPage.java | 217 Calendar today = Calendar.getInstance(); local 219 if (expirationCalendar.before(today)) { 238 int thisYear = today.get(Calendar.YEAR);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/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);
|
/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_data_err("Generate UDate for a specified time today fails, error %s - (Are you missing data?)\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) );
|
/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 | 126 UDate today = Calendar::getNow(); local 134 cal->setTime(today, status); 159 sdf->format(today,fmtOffset, pos); 713 UDate today = Calendar::getNow(); local 714 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec); 716 logln((UnicodeString)"Test Date: " + dateToString(today)); 722 tryPattern(*sdf, today, 0, expected); 723 tryPattern(*sdf, today, "G yyyy DDD", expected); [all...] |
/frameworks/base/core/java/android/content/ |
SyncManager.java | 1412 int today = dses[0].day; local [all...] |
/packages/apps/Browser/src/com/android/browser/ |
Controller.java | 277 Calendar today = Calendar.getInstance(); local 283 || lastActiveDate.after(today)); [all...] |
/prebuilt/common/ant/ |
ant.jar | |