Searched defs:date (Results 151 - 175 of 261) sorted by relevance

1234567891011

/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
H A DX509CertSelectorTest.java97 protected Date date = null; field in class:X509CertSelectorTest.TestCert
141 public TestCert(Date date) { argument
142 setDate(date);
213 public void setDate(Date date) { argument
214 this.date = new Date(date.getTime());
244 public void checkValidity(Date date) argument
247 if (this.date == null) {
250 int result = this.date.compareTo(date);
[all...]
/external/chromium/chrome/browser/autofill/
H A Dautofill_manager_unittest.cc359 std::string date; local
361 date = exp_year + "-" + exp_month;
363 "Expiration Date", "ccmonth", date.c_str(), "month", &field);
/external/chromium/net/base/
H A Dcookie_monster.h150 // creation date.
157 // creation date.
229 // creation date.
297 // already-expired expiration date. This captures that case.
502 // Approximate date of access time of least recently accessed cookie
611 void SetLastAccessDate(const base::Time& date) { argument
612 last_access_date_ = date;
660 // The cookie was overwritten with an already-expired expiration date.
/external/chromium/third_party/libjingle/source/talk/base/
H A Dhttpclient.cc119 unsigned long date; local
121 || !HttpDateToSeconds(s_temp, &date))
125 unsigned long request_time = date;
126 unsigned long response_time = date;
129 if (response_time > date) {
130 apparent_age = response_time - date;
150 lifetime = i_temp - date;
183 unsigned long last_modified, date; local
186 && HttpDateToSeconds(value, &date)
187 && (last_modified + 60 < date)) {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorIndexedDBAgent.cpp333 DEFINE_STATIC_LOCAL(String, date, ("date"));
346 } else if (type == date) {
347 double date; local
348 if (!key->getNumber("date", &date))
350 idbKey = IDBKey::createDate(date);
/external/chromium_org/third_party/icu/source/i18n/
H A Dgregocal.cpp17 * week-based date determination. Removed quetionable
30 * 10/15/99 aliu Fixed j32, cannot set date to Feb 29 2000 AD.
55 * Note that the Julian date used here is not a true Julian date, since
220 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
230 set(UCAL_DATE, date);
235 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
245 set(UCAL_DATE, date);
252 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
263 set(UCAL_DATE, date);
320 setGregorianChange(UDate date, UErrorCode& status) argument
658 int32_t date = internalGet(UCAL_DATE); local
[all...]
H A Dolsontz.cpp220 // Note: Setting finalStartYear to the finalZone is problematic. When a date is around
370 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis); local
372 getHistoricalOffset(date, TRUE, kDaylight, kStandard, rawoff, dstoff);
379 void OlsonTimeZone::getOffset(UDate date, UBool local, int32_t& rawoff, argument
384 if (finalZone != NULL && date >= finalStartMillis) {
385 finalZone->getOffset(date, local, rawoff, dstoff, ec);
387 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff);
392 OlsonTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, argument
397 if (finalZone != NULL && date >= finalStartMillis) {
398 finalZone->getOffsetFromLocal(date, nonExistingTimeOp
458 getHistoricalOffset(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawoff, int32_t& dstoff) const argument
586 inDaylightTime(UDate date, UErrorCode& ec) const argument
[all...]
H A Drbtz.cpp229 // Check if one of final rules has earlier transition date
383 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, argument
385 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status);
389 RuleBasedTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, argument
391 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status);
399 RuleBasedTimeZone::getOffsetInternal(UDate date, UBool local, argument
422 if (date < tstart) {
428 if (date > tend) {
430 rule = findRuleInFinal(date, local, NonExistingTimeOpt, DuplicatedTimeOpt);
438 if (date >
494 inDaylightTime(UDate date, UErrorCode& status) const argument
670 findRuleInFinal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt) const argument
[all...]
/external/chromium_org/third_party/icu/source/i18n/unicode/
H A Dcalendar.h75 * time fields have been initialized with the current date and time:
84 * needed to implement the date-time formatting for a particular language
146 * The date or time format strings are not part of the definition of a
154 * month up in the date <code>December 12, <b>1996</b></code> results in
158 * <code>Calendar</code> also provides a date arithmetic function for
160 * For example, subtracting 5 days from the date <code>September 12, 1996</code>
169 * Field IDs for date and time. Used to specify date/time fields. ERA is calendar
416 * @param date The given UDate in UTC (GMT) time.
422 inline void setTime(UDate date, UErrorCod argument
[all...]
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dccaltst.c295 /*Testing the current time and date using ucal_getnow()*/
298 /* open the date format and format the date to check the output */
304 log_verbose("PASS: The current date and time fetched is %s\n", u_austrcpy(tempMsgBuf, myDateFormat(datdef, now)) );
469 /* this is supposed to open default date format, but later on it treats it like it is "en_US"
481 log_verbose("\nTesting the date and time fetched in millis for a calendar using getMillis\n");
488 log_verbose("\nTesting the set date and time function using setMillis\n");
494 /*testing if the calendar date is set properly or not */
574 log_err("error in setting the calendar date : %s\n", u_errorName(status));
576 /*checking if the calendar date i
1356 UDate date; local
[all...]
H A Dcdattst.c87 /* this is supposed to open default date format, but later on it treats it like it is "en_US"
93 log_err("FAIL: error in creating the dateformat using short date and time style\n %s\n",
100 log_err("FAIL: error in creating the dateformat using medium date style with italian locale\n %s\n",
107 log_err("FAIL: error in creating the dateformat using long time and date styles with german locale\n %s\n",
115 log_err("FAIL: error in creating the dateformat using short date and time style\n %s\n",
127 log_verbose("The number of locales for which date/time formatting patterns are available is %d\n", numlocales);
134 log_data_err("FAIL: date format %s (getAvailable(%d)) is not instantiable: %s\n", udat_getAvailable(i), i, u_errorName(subStatus));
140 log_verbose("\nTesting the udat_clone() function of date format\n");
149 log_verbose("\nTesting the udat_format() function of date format\n");
253 log_err("FAIL: Error in creating a date forma
768 UDateFormat *date=0, *time=0, *full=0; local
1028 _aux1ExtremeDates(UDateFormat* fmt, UDate date, UChar* buf, int32_t buflen, char* cbuf, UErrorCode* ec) argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcaltest.cpp280 UDate when = date(90, UCAL_APRIL, 15);
384 if (cal->getTime(status) != date(84, 5, 24) || U_FAILURE(status))
389 if (cal->getTime(status) != date(85, 3, 2, 11, 49) || U_FAILURE(status))
394 if (cal->getTime(status) != date(95, 9, 12, 1, 39, 55) || U_FAILURE(status))
470 if (gc->getTime(status) != (d =date(98, 10, 14, 21, 43) )|| U_FAILURE(status))
477 if (gc->getTime(status) != (d=date(98, 10, 14, 21, 43, 55)) || U_FAILURE(status))
529 int32_t year = 1997, month = UCAL_APRIL, date = 1;
530 gc->set(year, month, date);
539 gc->get(UCAL_DATE, status) != (date + i)) errln("FAIL: Date wrong");
625 c->setGregorianChange(date(
791 UDate date; local
[all...]
H A Ddtfmrgts.cpp96 logln((UnicodeString)"today date: " + today);
98 logln("Error reparsing date: " + e.getMessage());
130 UDate dt = date(97, UCAL_MAY, 3, 8, 55);
231 UDate start = date(1809-1900, UCAL_DECEMBER, 25);
237 date(1809-1900, UCAL_DECEMBER, 25),
238 date(1909-1900, UCAL_DECEMBER, 24),
239 date(1809-1900, UCAL_DECEMBER, 26),
240 date(1861-1900, UCAL_DECEMBER, 25),
440 curDate = date(98, 0, 1);
452 strShortDate = "The current date (shor
1271 int32_t date; member in class:Test1684Data
1447 UDate date = cal->getTime(status); local
[all...]
H A Dtzregts.cpp150 errcheckln(status, "Error creating date format %s", u_errorName(status));
371 int32_t date = testCal->get(UCAL_DATE, status); local
375 --date;
380 ++date;
387 date,
1046 UDate date = 0; local
1049 fmt.format(date, strWith);
1051 fmt.format(date, strWithout);
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dhttpclient.cc119 time_t date; local
121 || !HttpDateToSeconds(s_temp, &date))
125 time_t request_time = date;
126 time_t response_time = date;
129 if (response_time > date) {
130 apparent_age = response_time - date;
152 lifetime = u_temp - date;
185 time_t last_modified, date; local
188 && HttpDateToSeconds(value, &date)
189 && (last_modified + 60 < date)) {
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DDB_Results.java639 * Return the ID of the last baseline build before the given date.
641 * @param date The date the baseline must be run before. If <code>null</code>
644 * @return the ID of the last baseline build before the given date or
647 public static String getLastBaselineBuild(String date) { argument
651 if (date == null) {
662 if (buildDate.compareTo(date) < 0) {
/external/grub/stage2/
H A Diso9660.h89 iso_date_t date; member in struct:iso_directory_record
/external/icu4c/i18n/
H A Dgregocal.cpp17 * week-based date determination. Removed quetionable
30 * 10/15/99 aliu Fixed j32, cannot set date to Feb 29 2000 AD.
55 * Note that the Julian date used here is not a true Julian date, since
220 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
230 set(UCAL_DATE, date);
235 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
245 set(UCAL_DATE, date);
252 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, argument
263 set(UCAL_DATE, date);
320 setGregorianChange(UDate date, UErrorCode& status) argument
658 int32_t date = internalGet(UCAL_DATE); local
[all...]
H A Dolsontz.cpp225 // Note: Setting finalStartYear to the finalZone is problematic. When a date is around
380 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis); local
382 getHistoricalOffset(date, TRUE, kDaylight, kStandard, rawoff, dstoff);
389 void OlsonTimeZone::getOffset(UDate date, UBool local, int32_t& rawoff, argument
394 if (finalZone != NULL && date >= finalStartMillis) {
395 finalZone->getOffset(date, local, rawoff, dstoff, ec);
397 getHistoricalOffset(date, local, kFormer, kLatter, rawoff, dstoff);
402 OlsonTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, argument
407 if (finalZone != NULL && date >= finalStartMillis) {
408 finalZone->getOffsetFromLocal(date, nonExistingTimeOp
468 getHistoricalOffset(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawoff, int32_t& dstoff) const argument
596 inDaylightTime(UDate date, UErrorCode& ec) const argument
[all...]
H A Drbtz.cpp249 // Check if one of final rules has earlier transition date
403 RuleBasedTimeZone::getOffset(UDate date, UBool local, int32_t& rawOffset, argument
405 getOffsetInternal(date, local, kFormer, kLatter, rawOffset, dstOffset, status);
409 RuleBasedTimeZone::getOffsetFromLocal(UDate date, int32_t nonExistingTimeOpt, int32_t duplicatedTimeOpt, argument
411 getOffsetInternal(date, TRUE, nonExistingTimeOpt, duplicatedTimeOpt, rawOffset, dstOffset, status);
419 RuleBasedTimeZone::getOffsetInternal(UDate date, UBool local, argument
442 if (date < tstart) {
448 if (date > tend) {
450 rule = findRuleInFinal(date, local, NonExistingTimeOpt, DuplicatedTimeOpt);
460 if (date >
516 inDaylightTime(UDate date, UErrorCode& status) const argument
692 findRuleInFinal(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt) const argument
[all...]
H A Dtzfmt.cpp636 TimeZoneFormat::format(UTimeZoneFormatStyle style, const TimeZone& tz, UDate date, argument
643 formatGeneric(tz, UTZGNM_LOCATION, date, name);
646 formatGeneric(tz, UTZGNM_LONG, date, name);
649 formatGeneric(tz, UTZGNM_SHORT, date, name);
652 formatSpecific(tz, UTZNM_LONG_STANDARD, UTZNM_LONG_DAYLIGHT, date, name, timeType);
655 formatSpecific(tz, UTZNM_SHORT_STANDARD, UTZNM_SHORT_DAYLIGHT, date, name, timeType);
665 tz.getOffset(date, FALSE, rawOffset, dstOffset, status);
755 UDate date = Calendar::getNow(); local
763 date = cal->getTime(status);
768 tz->getOffset(date, FALS
[all...]
H A Dzonemeta.cpp141 * Convert a date string used by metazone mappings to UDate.
208 UDate date = Grego::fieldsToDay(year, month - 1, day) * U_MILLIS_PER_DAY local
210 return date;
530 ZoneMeta::getMetazoneID(const UnicodeString &tzid, UDate date, UnicodeString &result) { argument
536 if (mzm->from <= date && mzm->to > date) {
/external/icu4c/i18n/unicode/
H A Dcalendar.h76 * time fields have been initialized with the current date and time:
85 * needed to implement the date-time formatting for a particular language
131 * many US locations observe daylight saving time. On the date switching to daylight
134 * the date. When the input wall time fall into this missing time slot, the ICU
139 * <p>On the date switching back to standard time, wall clock time is moved back one
142 * by default. For example, 1:30 AM on the date is resolved as 1:30 AM standard time.
168 * The date or time format strings are not part of the definition of a
176 * month up in the date <code>December 12, <b>1996</b></code> results in
180 * <code>Calendar</code> also provides a date arithmetic function for
182 * For example, subtracting 5 days from the date <cod
453 setTime(UDate date, UErrorCode& status) argument
[all...]
/external/icu4c/test/cintltst/
H A Dcdattst.c92 /* this is supposed to open default date format, but later on it treats it like it is "en_US"
98 log_err("FAIL: error in creating the dateformat using short date and time style\n %s\n",
105 log_err("FAIL: error in creating the dateformat using medium date style with italian locale\n %s\n",
112 log_err("FAIL: error in creating the dateformat using long time and date styles with german locale\n %s\n",
120 log_err("FAIL: error in creating the dateformat using short date and time style\n %s\n",
132 log_verbose("The number of locales for which date/time formatting patterns are available is %d\n", numlocales);
139 log_data_err("FAIL: date format %s (getAvailable(%d)) is not instantiable: %s\n", udat_getAvailable(i), i, u_errorName(subStatus));
145 log_verbose("\nTesting the udat_clone() function of date format\n");
154 log_verbose("\nTesting the udat_format() function of date format\n");
258 log_err("FAIL: Error in creating a date forma
795 UDateFormat *date=0, *time=0, *full=0; local
1154 _aux1ExtremeDates(UDateFormat* fmt, UDate date, UChar* buf, int32_t buflen, char* cbuf, UErrorCode* ec) argument
[all...]
/external/icu4c/test/intltest/
H A Ddtfmrgts.cpp98 logln((UnicodeString)"today date: " + today);
100 logln("Error reparsing date: " + e.getMessage());
132 UDate dt = date(97, UCAL_MAY, 3, 8, 55);
233 UDate start = date(1809-1900, UCAL_DECEMBER, 25);
239 date(1809-1900, UCAL_DECEMBER, 25),
240 date(1909-1900, UCAL_DECEMBER, 24),
241 date(1809-1900, UCAL_DECEMBER, 26),
242 date(1861-1900, UCAL_DECEMBER, 25),
368 // work now that date values are range checked per #3579.
444 curDate = date(9
1275 int32_t date; member in class:Test1684Data
1451 UDate date = cal->getTime(status); local
[all...]

Completed in 566 milliseconds

1234567891011