Searched defs:date (Results 1 - 25 of 261) sorted by relevance

1234567891011

/external/chromium_org/content/common/indexed_db/
H A Dindexed_db_key_unittest.cc31 double date = 1370884329.0; local
32 keys.push_back(IndexedDBKey(date, WebKit::WebIDBKeyTypeDate));
H A Dindexed_db_key.h31 WebKit::WebIDBKeyType type); // must be date or number
43 double date() const { return date_; } function in class:content::IndexedDBKey
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
H A DDateHelper.java28 * @return date the corresponding <code>Date</code>
36 * Converts a date as long to a mac date as long
38 * @param date date to convert
39 * @return date in mac format
41 static public long convert(Date date) { argument
42 return (date.getTime() / 1000L) + 2082844800L;
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DDateParser.java41 * @param date message to parse to set
43 public DateParser(String date) { argument
44 super(date);
64 Calendar cal = date();
H A DHeaderParser.java78 * parse and return a date field.
79 * @return a date structure with the parsed value.
81 protected Calendar date() throws ParseException { method in class:HeaderParser
123 throw createParseException("bad date field");
/external/nist-sip/java/javax/sip/header/
H A DDateHeader.java9 void setDate(Calendar date); argument
/external/smack/src/org/xbill/DNS/
H A DFormattedTime.java32 * @param date The Date to convert.
36 format(Date date) { argument
40 c.setTime(date);
67 int date = Integer.parseInt(s.substring(6, 8));
71 c.set(year, month, date, hour, minute, second);
/external/apache-http/src/org/apache/http/client/
H A DCookieStore.java65 * the specified {@link java.util.Date date}.
69 boolean clearExpired(Date date); argument
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java130 * that have expired by the specified {@link java.util.Date date}.
136 public synchronized boolean clearExpired(final Date date) { argument
137 if (date == null) {
142 if (it.next().isExpired(date)) {
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DTime.java41 * creates a time object from a given date - if the date is between 1950
46 Date date)
53 String d = dateF.format(date) + "Z";
112 throw new IllegalStateException("invalid date string: " + e.getMessage());
45 Time( Date date) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
H A DTime.java41 * creates a time object from a given date - if the date is between 1950
46 Date date)
53 String d = dateF.format(date) + "Z";
112 throw new IllegalStateException("invalid date string: " + e.getMessage());
45 Time( Date date) argument
/external/chromium_org/content/renderer/media/
H A Dcache_util.cc74 Time date; local
76 if (Time::FromString(response.httpHeaderField("Date").utf8().data(), &date) &&
79 date > Time() && expires > Time() &&
80 (expires - date) < kMinimumAgeForUsefulness) {
/external/chromium_org/third_party/icu/source/i18n/
H A Dwindtfmt.h55 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 { argument
140 return DateFormat::format(date, appendTo);
/external/chromium_org/third_party/openssl/openssl/apps/
H A Dversion.c143 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/icu4c/i18n/
H A Dwindtfmt.h55 UnicodeString& format(UDate date, UnicodeString& appendTo) const;
60 * Set the calendar to be used by this date format. Initially, the default
69 * Set the calendar to be used by this date format. Initially, the default
130 inline UnicodeString &Win32DateFormat::format(UDate date, UnicodeString& appendTo) const { argument
131 return DateFormat::format(date, appendTo);
/external/icu4c/samples/datefmt/answers/
H A Dmain_2.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
75 // Format the date
77 fmt->format(date, str, status);
79 // Display the formatted date string
H A Dmain_3.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/icu4c/samples/datefmt/
H A Dmain.cpp42 UDate date; local
44 // The languages in which we will display the date
66 date = cal->getTime(status);
81 // Format the date
83 fmt->format(date, str, status);
85 // Display the formatted date string
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPDateHeader.java50 /** date field
52 protected SIPDate date; field in class:SIPDateHeader
64 return date.encode();
68 * Set the date member
72 date = d;
77 * Sets date of DateHeader. The date is repesented by the Calendar object.
79 * @param dat the Calendar object date of this header.
83 date = new SIPDate(dat.getTime().getTime());
87 * Gets the date o
[all...]
/external/openssl/apps/
H A Dversion.c143 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/apache-http/src/org/apache/http/cookie/
H A DCookie.java132 * @param date Current time
136 boolean isExpired(final Date date); argument
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie2.java89 public boolean isExpired(final Date date) { argument
90 return this.discard || super.isExpired(date);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509AttributeCertificate.java37 * Return the date before which the certificate is not valid.
39 * @return the "not valid before" date.
44 * Return the date after which the certificate is not valid.
46 * @return the "not valid afer" date.
84 public void checkValidity(Date date) argument
/external/chromium/base/
H A Dtime_mac.cc64 CFGregorianDate date; local
65 date.second = exploded.second +
67 date.minute = exploded.minute;
68 date.hour = exploded.hour;
69 date.day = exploded.day_of_month;
70 date.month = exploded.month;
71 date.year = exploded.year;
75 CFAbsoluteTime seconds = CFGregorianDateGetAbsoluteTime(date, time_zone) +
88 CFGregorianDate date = CFAbsoluteTimeGetGregorianDate(seconds, time_zone); local
90 exploded->year = date
[all...]
/external/chromium_org/net/ftp/
H A Dftp_util_unittest.cc135 // Test date listings in German.
141 // Test date listings in Russian.
188 const char* date; member in struct:__anon8717::__anon8722
206 kTestCases[i].date, kTestCases[i].time));
210 UTF8ToUTF16(kTestCases[i].date),

Completed in 818 milliseconds

1234567891011