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

12 3 4 5 6

  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java 150 * 2) No date for today
159 int today = Time.getJulianDay(time.toMillis(false), time.gmtoff);
173 if (eventDay < today || eventDay > today + 1) {
188 if (eventDay == today + 1) {
  /system/ca-certificates/google/
extract_from_pem.py 85 datetime.date.today().isoformat())
  /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...]
  /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);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 318 Date today = new Date(); local
319 if (certificate.getNotAfter().compareTo(today) < 0) {
324 if (certificate.getNotBefore().compareTo(today) > 0) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/export/
KeyCheckPage.java 227 Calendar today = Calendar.getInstance(); local
229 if (expirationCalendar.before(today)) {
248 int thisYear = today.get(Calendar.YEAR);
  /external/autotest/client/cros/image_comparison/
publisher.py 120 'date': datetime.date.today().strftime("%m/%d/%y"),
  /external/autotest/client/cros/ui/
ui_test_base.py 135 'date': datetime.date.today().strftime("%m/%d/%y"),
  /external/autotest/server/cros/
repair_utils.py 76 cutoff = (datetime.datetime.today() -
  /frameworks/base/core/java/android/webkit/
DateSorter.java 29 * Today
58 mBins[0] = c.getTimeInMillis(); // Today
63 c.add(Calendar.DAY_OF_YEAR, NUM_DAYS_AGO); // move back to today
73 mLabels[0] = localeData.today;
  /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) {
  /cts/tests/tests/text/src/android/text/format/cts/
DateUtilsTest.java 207 long today = now; local
214 assertEquals("Today", DateUtils.getRelativeTimeSpanString(today, now,
  /system/tpm/attestation/common/
proto_print.py 221 """ % {'year': date.today().year,
243 """ % {'year': date.today().year,
  /external/deqp/scripts/
make_release.py 321 today = datetime.date.today()
322 return "dEQP-%s-%04d-%02d-%02d-%s" % (releaseName, today.year, today.month, today.day, configName)
  /development/testrunner/
create_test.py 110 "YEAR":datetime.date.today().year}
  /external/autotest/contrib/
always_failing_tests.py 44 cutoff_date = datetime.datetime.today() - cutoff_delta
  /external/chromium-trace/catapult/catapult_build/perfbot_stats/
chrome_perf_stats.py 62 yesterday = datetime.date.today() - datetime.timedelta(days=1)
  /libcore/luni/src/main/java/libcore/icu/
LocaleData.java 69 public String today; // "Today". field in class:LocaleData
  /external/chromium-trace/catapult/third_party/Paste/paste/util/
datetimeutil.py 220 now = date.today()
222 now = date.today()
  /prebuilts/go/darwin-x86/src/io/ioutil/
ioutil_test.go 44 data := "Programming today is a race between software engineers striving to " +
  /prebuilts/go/darwin-x86/test/
recover4.go 10 // This is true today; the role of the test is to ensure it stays true.
  /prebuilts/go/linux-x86/src/io/ioutil/
ioutil_test.go 44 data := "Programming today is a race between software engineers striving to " +
  /prebuilts/go/linux-x86/test/
recover4.go 10 // This is true today; the role of the test is to ensure it stays true.
  /frameworks/base/core/java/android/widget/
SimpleMonthView.java 114 * The day of month for today, or -1 if the today is not in the current
810 // Figure out what day today is.
811 final Calendar today = Calendar.getInstance(); local
816 if (sameDay(day, today)) {
854 private boolean sameDay(int day, Calendar today) {
855 return mYear == today.get(Calendar.YEAR) && mMonth == today.get(Calendar.MONTH)
856 && day == today.get(Calendar.DAY_OF_MONTH);
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmrgts.cpp 74 UDate today = Calendar::getNow(); local
75 logln((UnicodeString) "today: " + today);
92 fmtd = sdf->format(today, fmtd, pos);
93 logln("today: " + fmtd);
97 todayS = sdf->format(today, todayS, pos);
98 logln("today: " + todayS);
100 today = sdf->parse(todayS, status);
102 logln((UnicodeString)"today date: " + today);
    [all...]

Completed in 441 milliseconds

12 3 4 5 6