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

  /external/openssh/
auth-shadow.c 58 time_t today; local
62 today = time(NULL) / DAY;
63 daysleft = spw->sp_expire - today;
64 debug3("%s: today %d sp_expire %d days left %d", __func__, (int)today,
93 time_t today; local
101 today = time(NULL) / DAY;
102 debug3("%s: today %d sp_lstchg %d sp_max %d", __func__, (int)today,
121 daysleft = spw->sp_lstchg + spw->sp_max - today;
    [all...]
  /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 134 Calendar today = new GregorianCalendar(); local
135 today.set(Calendar.HOUR_OF_DAY, 0);
136 today.set(Calendar.MINUTE, 0);
137 today.set(Calendar.SECOND, 0);
138 today.set(Calendar.MILLISECOND, 0);
139 return today.getTime();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 144 Date today = new Date(); local
145 if (certificate.getNotAfter().compareTo(today) < 0) {
150 if (certificate.getNotBefore().compareTo(today) > 0) {
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 429 Calendar today = Calendar.getInstance(); local
430 today.set(Calendar.HOUR_OF_DAY, 0);
431 today.set(Calendar.MINUTE, 0);
432 today.set(Calendar.SECOND, 0);
433 today.add(Calendar.DATE, 1);
434 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 141 // If this view contains the today
145 // Which day is today [0-6] or -1 if no day is today
157 // The timezone to display times/dates in (used for determining when Today
276 // Figure out what day today is
277 Time today = new Time(tz); local
278 today.setToNow();
296 if (time.year == today.year && time.yearDay == today.yearDay) {
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java 108 * 2) No date for today
117 int today = Time.getJulianDay(time.toMillis(false), time.gmtoff); local
131 if (eventDay < today || eventDay > today + 1) {
146 if (eventDay == today + 1) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 219 Calendar today = Calendar.getInstance(); local
221 if (expirationCalendar.before(today)) {
240 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 135 UDate today = Calendar::getNow(); local
143 cal->setTime(today, status);
168 sdf->format(today,fmtOffset, pos);
722 UDate today = Calendar::getNow(); local
723 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec);
725 logln((UnicodeString)"Test Date: " + dateToString(today));
731 tryPattern(*sdf, today, 0, expected);
732 tryPattern(*sdf, today, "G yyyy DDD", expected);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 1418 DayOfMonthDrawable today; local
    [all...]
  /frameworks/base/core/java/android/content/
SyncManager.java 1450 int today = dses[0].day; local
    [all...]
  /packages/apps/Browser/src/com/android/browser/
Controller.java 272 Calendar today = Calendar.getInstance(); local
278 || lastActiveDate.after(today));
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 

Completed in 532 milliseconds