HomeSort by relevance Sort by last modified time
    Searched refs:date (Results 1 - 25 of 414) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /dalvik/libcore/security/src/main/java/org/apache/harmony/security/x509/
InvalidityDate.java 21 import java.util.Date;
27 * CRL Entry's Invalidity Date Extension (OID = 2.5.29.24).
37 // invalidity date value
38 private final Date date; field in class:InvalidityDate
41 * Constructs the object on the base of the invalidity date value.
43 public InvalidityDate(Date date) {
44 this.date = date;
    [all...]
  /external/bluetooth/glib/glib/
gdate.h 43 * Date calculations (not time for now, to be resolved). These are a
46 * date routines (written for in-house software). Written by Havoc
55 /* enum used to specify order of appearance in parsed date strings */
118 /* g_date_new() returns an invalid date, you then have to _set() stuff
127 void g_date_free (GDate *date);
134 gboolean g_date_valid (const GDate *date);
144 GDateWeekday g_date_get_weekday (const GDate *date);
145 GDateMonth g_date_get_month (const GDate *date);
146 GDateYear g_date_get_year (const GDate *date);
147 GDateDay g_date_get_day (const GDate *date);
    [all...]
  /packages/apps/Email/src/org/apache/james/mime4j/field/
DateTimeField.java 29 import java.util.Date;
32 private Date date; field in class:DateTimeField
35 protected DateTimeField(String name, String body, String raw, Date date, ParseException parseException) {
37 this.date = date;
41 public Date getDate() {
42 return date;
53 Date date = null; local
    [all...]
  /external/bluetooth/glib/debian/
build 19 my @date = localtime;
21 my $datestr = sprintf("%d%.2d%.2d", $date[5] + 1900, $date[4] + 1, $date[3]);
43 print NEWCHANGELOG "$package ($new_version) unstable; urgency=low\n\n * CVS snapshot build at " . scalar localtime() . "\n\n -- $maintainer " . `date -R` . "\n";
  /dalvik/libcore/security/src/main/java/org/bouncycastle/asn1/cms/
KEKIdentifier.java 17 private DERGeneralizedTime date; field in class:KEKIdentifier
22 DERGeneralizedTime date,
26 this.date = date;
42 date = (DERGeneralizedTime)seq.getObjectAt(1);
50 date = (DERGeneralizedTime)seq.getObjectAt(1);
103 return date;
116 * date GeneralizedTime OPTIONAL,
127 if (date != null)
129 v.add(date);
    [all...]
RecipientKeyIdentifier.java 16 private DERGeneralizedTime date; field in class:RecipientKeyIdentifier
21 DERGeneralizedTime date,
25 this.date = date;
42 date = (DERGeneralizedTime)seq.getObjectAt(1);
50 date = (DERGeneralizedTime)seq.getObjectAt(1);
100 return date;
114 * date GeneralizedTime OPTIONAL,
127 if (date != null)
129 v.add(date);
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_SimpleDateFormat.java 25 import java.util.Date;
52 Date date = cal.getTime(); local
72 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
73 t_FormatWithField(1, format, date, null, Field.YEAR, 6, 8);
74 t_FormatWithField(2, format, date, null, Field.MONTH, 17, 18);
75 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 36, 38);
76 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 46, 48);
77 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 56, 58);
78 t_FormatWithField(6, format, date, null, Field.HOUR1, 66, 67)
139 Date date = cal.getTime(); local
    [all...]
  /dalvik/libcore/text/src/test/java/org/apache/harmony/text/tests/java/text/
Support_SimpleDateFormat.java 25 import java.util.Date;
55 Date date = cal.getTime(); local
75 t_FormatWithField(0, format, date, null, Field.ERA, 0, 2);
76 t_FormatWithField(1, format, date, null, Field.YEAR, 15, 17);
77 t_FormatWithField(2, format, date, null, Field.MONTH, 26, 27);
78 t_FormatWithField(3, format, date, null, Field.DAY_OF_MONTH, 45, 47);
79 t_FormatWithField(4, format, date, null, Field.HOUR_OF_DAY1, 55, 57);
80 t_FormatWithField(5, format, date, null, Field.HOUR_OF_DAY0, 65, 67);
81 t_FormatWithField(6, format, date, null, Field.HOUR1, 75, 76)
142 Date date = cal.getTime(); local
    [all...]
  /external/webkit/WebKitTools/iExploder/tools/
osx_last_crash.rb 13 date=''
19 if line =~ /^Date.*(200.*)/
20 date = $1
40 puts File.basename(filename) + " - " + date
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 56 * Computes the sunrise time for the given zenith at the given date.
60 * @param date <code>Calendar</code> object representing the date to
64 public double computeSunriseTime(double solarZenith, Calendar date) {
65 return computeSolarEventTime(solarZenith, date, true);
69 * Computes the sunset time for the given zenith at the given date.
73 * @param date <code>Calendar</code> object representing the date to compute
77 public double computeSunsetTime(double solarZenith, Calendar date) {
78 return computeSolarEventTime(solarZenith, date, false)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-91.js 28 var date = new Date();
29 var year = date.getYear();
30 date.setMilliseconds(Number.NaN);
31 date.setYear(1900 + year);
32 assertEquals(year, date.getYear());
33 assertEquals(0, date.getMonth());
34 assertEquals(1, date.getDate());
35 assertEquals(0, date.getHours());
36 assertEquals(0, date.getMinutes())
    [all...]
  /external/apache-http/src/org/apache/http/client/
CookieStore.java 4 * $Date: 2007-12-15 06:45:48 -0800 (Sat, 15 Dec 2007) $
33 import java.util.Date;
65 * the specified {@link java.util.Date date}.
69 boolean clearExpired(Date date);
  /external/apache-http/src/org/apache/http/cookie/
Cookie.java 4 * $Date: 2007-09-22 03:56:04 -0700 (Sat, 22 Sep 2007) $
34 import java.util.Date;
76 * Returns the expiration {@link Date} of the cookie, or <tt>null</tt>
81 * @return Expiration {@link Date}, or <tt>null</tt>.
83 Date getExpiryDate();
132 * @param date Current time
136 boolean isExpired(final Date date);
  /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;\
  /external/icu4c/i18n/
zstrfmt.h 192 * Create a snapshot of old zone strings array for the given date
194 UnicodeString** createZoneStringsArray(UDate date, int32_t &rowCount, int32_t &colCount, UErrorCode &status) const;
225 inline UnicodeString& getLongStandard(const UnicodeString &tzid, UDate date,
227 inline UnicodeString& getLongDaylight(const UnicodeString &tzid, UDate date,
229 inline UnicodeString& getLongGenericNonLocation(const UnicodeString &tzid, UDate date,
231 inline UnicodeString& getLongGenericPartialLocation(const UnicodeString &tzid, UDate date,
233 inline UnicodeString& getShortStandard(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly,
235 inline UnicodeString& getShortDaylight(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly,
237 inline UnicodeString& getShortGenericNonLocation(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly,
239 inline UnicodeString& getShortGenericPartialLocation(const UnicodeString &tzid, UDate date, UBool commonlyUsedOnly
    [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);
  /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...]
  /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/webkit/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/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/JavaScriptCore/runtime/
DateConversion.cpp 55 double parseDate(ExecState* exec, const UString &date)
57 if (date == exec->globalData().cachedDateString)
59 double value = parseDateFromNullTerminatedCharacters(exec, date.UTF8String().c_str());
60 exec->globalData().cachedDateString = date;
  /external/webkit/WebKitTools/QueueStatusServer/model/
queuestatus.py 37 date = db.DateTimeProperty(auto_now_add=True) variable in class:QueueStatus
  /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/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]);

Completed in 995 milliseconds

1 2 3 4 5 6 7 8 91011>>