/libcore/luni/src/main/java/java/util/ |
GregorianCalendar.java | 33 * default to the date the Gregorian calendar was instituted (October 15, 1582 34 * in some countries, later in others). The cutover date may be changed by the 54 * date, leap year rules were applied irregularly, and before 45 BC the Julian 125 * // and the current date and time 127 * Date trialTime = new Date(); 136 * System.out.println("DATE: " + calendar.get(Calendar.DATE)); 161 * System.out.println("DATE: " + calendar.get(Calendar.DATE)); 487 int date = dayOfYear - daysInYear(leapYear, month); local 1050 int date = dayOfYear - daysInYear(leapYear, month); local [all...] |
/ndk/sources/host-tools/sed-4.2.1/ |
Makefile.am | 24 test $(COPYRIGHT_YEAR) = `date +%Y` || \
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
ContactPhotoUtils.java | 32 import java.util.Date; 72 Date date = new Date(System.currentTimeMillis()); local 74 return "ContactPhoto-" + dateFormat.format(date) + ".jpg";
|
/external/icu4c/i18n/ |
olsontz.cpp | 224 // Note: Setting finalStartYear to the finalZone is problematic. When a date is around 379 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis); local 381 getHistoricalOffset(date, TRUE, kDaylight, kStandard, rawoff, dstoff); 388 void OlsonTimeZone::getOffset(UDate date, UBool local, int32_t& rawoff, 393 if (finalZone != NULL && date >= finalStartMillis) { 394 finalZone->getOffset(date, local, rawoff, dstoff, ec); 396 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff); 401 OlsonTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, 406 if (finalZone != NULL && date >= finalStartMillis) { 407 finalZone->getOffsetFromLocal(date, nonExistingTimeOpt, duplicatedTimeOpt, rawoff, dstoff, ec) [all...] |
vzone.cpp | 130 vzone_getOffset3(VZone* zone, UDate date, UBool local, int32_t& rawOffset, 132 return ((VTimeZone*)zone)->VTimeZone::getOffset(date, local, rawOffset, dstOffset, ec); 151 vzone_inDaylightTime(VZone* zone, UDate date, UErrorCode& status) { 152 return ((VTimeZone*)zone)->VTimeZone::inDaylightTime(date, status);
|
zonemeta.h | 68 static UnicodeString& U_EXPORT2 getMetazoneID(const UnicodeString &tzid, UDate date, UnicodeString &result);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_5/Regress/ |
regress-216320.js | 37 * Date: 09 September 2003 80 date=formfield.value; 83 year=date.substring(0,4); 84 hy1=date.charAt(4); 85 month=date.substring(5,7); 86 hy2=date.charAt(7); 87 day=date.substring(8,10); 88 today=new Date(); 93 if(date.match(/^\s*$/)) {return true; } 115 date=formfield.value [all...] |
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/ |
Utility.java | 345 * Generate a time in milliseconds from a date string that represents a date/time in GMT 346 * @param date string in format 20090211T180303Z (rfc2445, iCalendar). 349 public static long parseDateTimeToMillis(String date) { 350 GregorianCalendar cal = parseDateTimeToCalendar(date); 355 * Generate a GregorianCalendar from a date string that represents a date/time in GMT 356 * @param date string in format 20090211T180303Z (rfc2445, iCalendar). 359 public static GregorianCalendar parseDateTimeToCalendar(String date) { 360 GregorianCalendar cal = new GregorianCalendar(Integer.parseInt(date.substring(0, 4)) [all...] |
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/ |
TimeZoneTest.java | 22 import java.util.Date; 204 Date date = new Date(07, 2, 24); local 205 assertEquals(300, date.getTimezoneOffset()); 206 date = new Date(99, 8, 1); 207 assertEquals(240, date.getTimezoneOffset());
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
X509AttributeCertificate.java | 14 import java.util.Date; 37 * Return the date before which the certificate is not valid. 39 * @return the "not valid before" date. 41 public Date getNotBefore(); 44 * Return the date after which the certificate is not valid. 46 * @return the "not valid afer" date. 48 public Date getNotAfter(); 84 public void checkValidity(Date date)
|
X509V1CertificateGenerator.java | 17 import java.util.Date; 105 Date date) 107 tbsGen.setStartDate(new Time(date)); 111 Date date) 113 tbsGen.setEndDate(new Time(date));
|
/external/chromium/chrome/browser/bookmarks/ |
bookmark_model.h | 80 void set_date_added(const base::Time& date) { date_added_ = date; } 88 void set_date_folder_modified(const base::Time& date) { 89 date_folder_modified_ = date; 153 // Date we were created. 277 // Adds a url with a specific creation date. 295 // Sets the date modified time of the specified node. 298 // Resets the 'date modified' time of the node to 0. This is used during
|
/external/icu4c/test/intltest/ |
loctest.h | 98 static UDate date(int32_t y, int32_t m, int32_t d, int32_t hr = 0, int32_t min = 0, int32_t sec = 0);
|
/external/icu4c/tools/tzcode/ |
tzselect.ksh | 124 date = "(J?[0-9]+|M[0-9]+\.[0-9]+\.[0-9]+)" 125 datetime = "," date "(/" time ")?" 245 # Use the proposed TZ to output the current date relative to UTC. 252 TZdate=$(LANG=C TZ="$TZ_for_date" date) 253 UTdate=$(LANG=C TZ=UTC0 date)
|
/external/jsilver/src/org/clearsilver/ |
HDF.java | 21 import java.util.Date; 97 * Export a date to a clearsilver tree using a specified timezone 99 void exportDate(String hdfName, TimeZone timeZone, Date date); 102 * Export a date to a clearsilver tree using a specified timezone
|
/external/libffi/src/ |
types.c | 72 # error FFI_TYPE_LONGDOUBLE out of date
|
/external/qemu-pc-bios/vgabios/ |
Makefile | 12 RELDATE = `date '+%d %b %Y'`
|
/external/skia/tools/copyright/ |
fileparser.py | 61 DEFAULT_YEAR = datetime.date.today().year
|
/external/v8/test/mjsunit/regress/ |
regress-396.js | 30 function DateYear(date) { 31 var string = date.getYear() + ''; 38 assertEquals('1995', DateYear(new Date('Dec 25, 1995'))); 39 assertEquals('2005', DateYear(new Date('Dec 25, 2005')));
|
/external/webkit/Source/WebKit/chromium/public/ |
WebIDBKey.h | 80 WEBKIT_API double date() const; // Only valid for DateType.
|
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/ |
InjectedBundlePageLoaderClient.h | 67 void willPerformClientRedirectForFrame(WebPage*, WebFrame*, const String& url, double delay, double date);
|
/external/webkit/Tools/QueueStatusServer/handlers/ |
dashboard.py | 47 "status_date": queue_status.date if queue_status else None,
|
updateworkitems.py | 58 work_items.date = datetime.now()
|
/external/webkit/Tools/QueueStatusServer/model/ |
workitems.py | 37 date = db.DateTimeProperty(auto_now_add=True) variable in class:WorkItems
|
/external/webkit/Tools/wx/packaging/ |
build-mac-installer.py | 52 date = str(datetime.date.today()) variable 56 pkgname = "wxWebKit-%s-wx%s-py%s-%s" % (platform, wx_version[:3], py_version, date) 150 '--version ' + date.strip(),
|