/external/webkit/Tools/QueueStatusServer/model/ |
svnrevision.py | 35 date = db.DateTimeProperty(auto_now_add=True) variable in class:SVNRevision
|
/frameworks/base/media/libdrm/mobile1/include/objmng/ |
drm_inner.h | 26 #define INT_2_YMD_HMS(year, mon, day, date, hour, min, sec, time) do{\ 27 year = date / 10000;\ 28 mon = date % 10000 / 100;\ 29 day = date %100;\
|
/frameworks/compile/libbcc/runtime/make/ |
config.mk | 16 DATE := date
|
/packages/apps/Contacts/src/com/android/contacts/util/ |
DateUtils.java | 24 import java.util.Date; 42 // Variations of ISO 8601 date format. Do not change the order - it does affect the 71 * Parses the supplied string to see if it looks like a date. If so, 72 * returns the date. Otherwise, returns null. 74 public static Date parseDate(String string) { 80 Date date = f.parse(string, parsePosition); local 82 return date; 90 * Parses the supplied string to see if it looks like a date. If so, 91 * returns the same date in a cleaned-up format for the user. Otherwise, return 106 Date date; local [all...] |
/external/webkit/Source/JavaScriptCore/runtime/ |
DateConversion.cpp | 58 double parseDate(ExecState* exec, const UString &date) 60 if (date == exec->globalData().cachedDateString) 62 double value = parseES5DateFromNullTerminatedCharacters(date.utf8().data()); 64 value = parseDateFromNullTerminatedCharacters(exec, date.utf8().data()); 65 exec->globalData().cachedDateString = date;
|
/packages/apps/Calendar/src/com/android/calendar/ |
CalendarViewAdapter.java | 49 // Day view: show day of the week + full date underneath 52 // Agenda view: show day of the week + full date underneath 66 // The current selected event's time, used to calculate the date and day of the week 114 // Sets a thread to run 1 second after midnight and update the current date 115 // This is used to display correctly the date of yesterday/today/tomorrow 179 TextView date = (TextView)v.findViewById(R.id.top_button_date); local 185 date.setText(buildFullDate()); 190 date.setText(buildMonthYearDate()); 194 date.setText(buildMonthYearDate()); 199 date.setText(buildFullDate()) 228 TextView date = (TextView)v.findViewById(R.id.button_date); local 304 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime, local 311 String date = DateUtils.formatDateRange( local 323 String date = DateUtils.formatDateRange(mContext, mFormatter, mMilliTime, mMilliTime, local 330 String date = DateUtils.formatDateRange( local 371 String date = DateUtils.formatDateRange(mContext, mFormatter, weekStartTime, local [all...] |
/external/icu4c/i18n/ |
zstrfmt.h | 236 * Create a snapshot of old zone strings array for the given date 238 UnicodeString** createZoneStringsArray(UDate date, int32_t &rowCount, int32_t &colCount, UErrorCode &status) const; 270 inline UnicodeString& getLongStandard(const UnicodeString &tzid, UDate date, 272 inline UnicodeString& getLongDaylight(const UnicodeString &tzid, UDate date, 274 inline UnicodeString& getLongGenericNonLocation(const UnicodeString &tzid, UDate date, 276 inline UnicodeString& getLongGenericPartialLocation(const UnicodeString &tzid, UDate date, 278 inline UnicodeString& getShortStandard(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly, 280 inline UnicodeString& getShortDaylight(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly, 282 inline UnicodeString& getShortGenericNonLocation(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly, 284 inline UnicodeString& getShortGenericPartialLocation(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly [all...] |
datefmt.cpp | 11 * Date Name Description 117 // if the type of the Formattable is double or long, treat it as if it were a Date 118 UDate date = 0; 122 date = obj.getDate(); 125 date = (UDate)obj.getDouble(); 128 date = (UDate)obj.getLong(); 139 return format(date, appendTo, fieldPosition); 152 // if the type of the Formattable is double or long, treat it as if it were a Date 153 UDate date = 0; 157 date = obj.getDate() [all...] |
windtfmt.h | 55 UnicodeString& format(UDate date, UnicodeString& appendTo) const; 60 * Set the calendar to be used by this date format. Initially, the default 70 * Set the calendar to be used by this date format. Initially, the default 139 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { 140 return DateFormat::format(date, appendTo);
|
/external/webkit/Source/WebCore/html/ |
BaseDateAndTimeInputType.cpp | 142 DateComponents date; local 143 if (!parseToDateComponents(src, &date)) 145 double msec = date.millisecondsSinceEpoch(); 164 DateComponents date; 165 if (!setMillisecondToDateComponents(value, &date)) 169 return date.toString(); 171 return date.toString(DateComponents::None); 173 return date.toString(DateComponents::Second); 174 return date.toString(DateComponents::Millisecond);
|
/libcore/luni/src/test/java/libcore/java/util/ |
TimeZoneTest.java | 20 import java.util.Date; 42 stz.inDaylightTime(new Date()); 61 Date date = sdf.parse("1902-11-01T00:00:00.000+0800"); local 62 assertEquals(-2119680000000L, date.getTime()); 63 assertEquals(-28800000, tz.getOffset(date.getTime())); 64 assertFalse(tz.inDaylightTime(date)); 65 assertEquals("Fri Oct 31 08:00:00 PST 1902", date.toString()); 66 assertEquals("31 Oct 1902 16:00:00 GMT", date.toGMTString()); 68 date = sdf.parse("1902-06-01T00:00:00.000+0800") [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/javax/security/cert/ |
X509CertificateTest.java | 29 import java.util.Date; 166 Date date = new Date(); local 167 Date nb_date = tbt_cert.getNotBefore(); 168 Date na_date = tbt_cert.getNotAfter(); 172 date.compareTo(na_date) > 0); 174 date.compareTo(nb_date) < 0); 177 date.compareTo(na_date) > 0); 180 date.compareTo(nb_date) < 0) 193 Date[] date = new Date[4]; local [all...] |
/bionic/libc/bionic/ |
time64.c | 203 Time64_T timegm64(const struct TM *date) { 207 Year orig_year = (Year)date->tm_year; 238 days += julian_days_by_month[IS_LEAP(orig_year)][date->tm_mon]; 239 days += date->tm_mday - 1; 243 seconds += date->tm_hour * 60 * 60; 244 seconds += date->tm_min * 60; 245 seconds += date->tm_sec; 493 struct TM date; local 502 /* Have to make the year safe in date else it won't fit in safe_date */ 503 date = *input_date 771 struct TM date; local [all...] |
/cts/libs/vogar-expect/src/vogar/ |
Outcome.java | 23 import java.util.Date; 36 private final Date date; field in class:Outcome 42 this.date = new Date(); 45 public Outcome(String outcomeName, Result result, String outputLine, Date date) { 49 this.date = date; 56 this.date = new Date() [all...] |
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicClientCookie2.java | 4 * $Date: 2008-05-22 11:26:53 -0700 (Thu, 22 May 2008) $ 34 import java.util.Date; 89 public boolean isExpired(final Date date) { 90 return this.discard || super.isExpired(date);
|
/external/icu4c/test/intltest/ |
caltztst.h | 33 // Tries to mimic the Java Date.toString() format. 38 // Utility methods to create a date. This is useful for converting Java constructs 39 // which create a Date object. Returns a Date in the current local time. 40 UDate date(int32_t y, int32_t m, int32_t d, int32_t hr=0, int32_t min=0, int32_t sec=0); 42 // Utility methods to create a date. Returns a Date in UTC. This will differ 43 // from local dates returned by date() by the current default zone offset. 44 // Date utcDate(int y, int m, int d, int hr=0, int min=0, int sec=0); 46 // Utility method to get the fields of a date; similar to Date.getYear() etc [all...] |
/external/llvm/lib/Archive/ |
ArchiveInternals.h | 47 char date[12]; ///< File date, decimal seconds since Epoch member in class:llvm::ArchiveMemberHeader 60 memset(date,' ',12);
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.4.3.js | 26 var TITLE = "Date.UTC( year, month, date, hours, minutes, seconds, ms )"; 34 this.date = 0; 41 function utc( year, month, date, hours, minutes, seconds, ms ) { 47 if (date) 48 d.date = Number(date); 62 if (isNaN(month) || isNaN(year) || isNaN(date) || isNaN(hours) || 66 d.date = Number.NaN; 77 d.day = MakeDay( d.year, d.month, d.date ); [all...] |
/external/webkit/Source/WebCore/platform/mac/ |
EventLoopMac.mm | 35 NSTimeInterval interval = [[NSDate date] timeIntervalSinceReferenceDate];
|
/external/openssl/apps/ |
version.c | 143 int cflags=0,version=0,date=0,options=0,platform=0,dir=0; local 157 date=1; 167 date=version=cflags=options=platform=dir=1; 189 if (date) printf("%s\n",SSLeay_version(SSLEAY_BUILT_ON));
|
/external/webkit/Source/WebCore/bindings/v8/custom/ |
V8IDBKeyCustom.cpp | 52 return v8::Date::New(key->date());
|
/external/apache-http/src/org/apache/http/impl/client/ |
BasicCookieStore.java | 4 * $Date: 2008-05-03 03:39:28 -0700 (Sat, 03 May 2008) $ 36 import java.util.Date; 94 if (!cookie.isExpired(new Date())) { 130 * that have expired by the specified {@link java.util.Date date}. 134 * @see Cookie#isExpired(Date) 136 public synchronized boolean clearExpired(final Date date) { 137 if (date == null) { 142 if (it.next().isExpired(date)) { [all...] |
/external/chromium/chrome/common/extensions/docs/examples/howto/contentscript_xhr/ |
contentscript.js | 16 for (var date in data.trends) { 17 if (data.trends.hasOwnProperty(date)) { 18 var trends = data.trends[date];
|
/external/icu4c/samples/datefmt/answers/ |
main_2.cpp | 42 UDate date; local 44 // The languages in which we will display the date 66 date = cal->getTime(status); 72 // Create a formatter for DATE 75 // Format the date 77 fmt->format(date, str, status); 79 // Display the formatted date string 80 printf("Date (%s): ", LANGUAGE[i]);
|
main_3.cpp | 42 UDate date; local 44 // The languages in which we will display the date 66 date = cal->getTime(status); 72 // Create a formatter for DATE and TIME 81 // Format the date 83 fmt->format(date, str, status); 85 // Display the formatted date string 86 printf("Date (%s, %s): ", LANGUAGE[i], TIMEZONE[j]);
|