Searched refs:date (Results 151 - 175 of 586) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/i18n/
H A Dindiancal.cpp136 * Returns the Julian Day corresponding to gregorian date
140 * @param date The date in Gregorian day in month
142 static double gregorianToJD(int32_t year, int32_t month, int32_t date) { argument
152 date);
196 static double IndianToJD(int32_t year, int32_t month, int32_t date) { argument
213 jd = start + (date - 1);
229 jd += date - 1;
294 int32_t gregorianYear; // Stores gregorian date corresponding to Julian day;
297 gregorianYear = jdToGregorian(julianDay, gd)[0]; // Gregorian date fo
[all...]
H A Dethpccal.cpp138 * The system maintains a static default century start date and Year. They are
139 * initialized the first time they are used. Once the system default century date
197 EthiopicCalendar::ethiopicToJD(int32_t year, int32_t month, int32_t date)
199 return ceToJD(year, month, date, JD_EPOCH_OFFSET_AMETE_MIHRET);
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
473 getHistoricalOffset(UDate date, UBool local, int32_t NonExistingTimeOpt, int32_t DuplicatedTimeOpt, int32_t& rawoff, int32_t& dstoff) const argument
601 inDaylightTime(UDate date, UErrorCode& ec) const argument
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
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 Dcaltztst.cpp178 // Utility methods to create a date. This is useful for converting Java constructs
181 CalendarTimeZoneTest::date(int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec) function in class:CalendarTimeZoneTest
198 // Utility methods to create a date. The returned Date is UTC rather than local.
205 Date dt = date(y, m, d, hr, min, sec) +
219 CalendarTimeZoneTest::dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec) argument
224 cal->setTime(date, status);
/external/icu/icu4c/source/test/intltest/
H A Ddtfmrgts.cpp101 logln((UnicodeString)"today date: " + today);
103 logln("Error reparsing date: " + e.getMessage());
135 UDate dt = date(97, UCAL_MAY, 3, 8, 55);
236 UDate start = date(1809-1900, UCAL_DECEMBER, 25);
242 date(1809-1900, UCAL_DECEMBER, 25),
243 date(1909-1900, UCAL_DECEMBER, 24),
244 date(1809-1900, UCAL_DECEMBER, 26),
245 date(1861-1900, UCAL_DECEMBER, 25),
371 // work now that date values are range checked per #3579.
447 curDate = date(9
1278 int32_t date; member in class:Test1684Data
1454 UDate date = cal->getTime(status); local
[all...]
H A Dcaltztst.cpp178 // Utility methods to create a date. This is useful for converting Java constructs
181 CalendarTimeZoneTest::date(int32_t y, int32_t m, int32_t d, int32_t hr, int32_t min, int32_t sec) function in class:CalendarTimeZoneTest
198 // Utility methods to create a date. The returned Date is UTC rather than local.
205 Date dt = date(y, m, d, hr, min, sec) +
219 CalendarTimeZoneTest::dateToFields(UDate date, int32_t& y, int32_t& m, int32_t& d, int32_t& hr, int32_t& min, int32_t& sec) argument
224 cal->setTime(date, status);
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicClientCookie.java154 * Sets expiration date.
291 * @param date Current time
295 public boolean isExpired(final Date date) { argument
296 if (date == null) {
300 && cookieExpiryDate.getTime() <= date.getTime());
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DX509CertificateHolder.java185 * Return the date before which this certificate is not valid.
195 * Return the date after which this certificate is not valid.
245 * Return whether or not this certificate is valid on a particular date.
247 * @param date the date of interest.
250 public boolean isValidOn(Date date) argument
252 return !date.before(x509Certificate.getStartDate().getDate()) && !date.after(x509Certificate.getEndDate().getDate());
/external/chromium_org/google_apis/drive/
H A Dtime_util.cc46 base::StringPiece date; local
53 // Splits the string into "date" part and "time" part.
58 date = parts[0];
89 // Parses the date part.
92 if (Tokenize(date, "-", &parts) != 3)
/external/chromium_org/net/ftp/
H A Dftp_util_unittest.cc138 // Test date listings in German.
144 // Test date listings in Russian.
191 const char* date; member in struct:__anon8636::__anon8641
209 kTestCases[i].date, kTestCases[i].time));
213 UTF8ToUTF16(kTestCases[i].date),
/external/smack/src/org/jivesoftware/smackx/workgroup/ext/history/
H A DAgentChatHistory.java119 Date date = null;
128 if ((eventType == XmlPullParser.START_TAG) && ("date".equals(parser.getName()))) {
131 date = new Date(l);
152 return new AgentChatSession(date, duration, visitorsName, visitorsEmail, sessionID, question);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/network/
H A DResourceWebSocketFrameView.js55 var date = new Date(payload.time * 1000);
59 time: date.toLocaleTimeString()
/external/chromium_org/third_party/skia/tools/tests/
H A Drun.sh71 # correct and up to date, and we don't download them again.
118 START_TIMESTAMP=$(date +%s)
121 END_TIMESTAMP=$(date +%s)
/external/chromium_org/v8/tools/
H A Dfuzz-harness.sh88 tar -cjf fuzz-results-$(date +%Y%m%d%H%M%S).tar.bz2 err-* w*
/external/dhcpcd/mk/
H A Ddist.mk14 _SNAP_SH= date -u +%Y%m%d%H%M
/external/dnsmasq/contrib/port-forward/
H A Ddnsmasq-portforward27 date +"%D %T $*" >>${LOGFILE}
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-reference.js12 var date = new Date();
13 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
14 var expiration = date.toGMTString();
64 var date = new Date();
65 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // keep this for 10 years
66 var expiration = date.toGMTString();
/external/icu/icu4c/source/i18n/unicode/
H A Dtznames.h95 * to meta zones mapping data are stored by date range.
188 * Returns the meta zone ID for the given canonical time zone ID at the given date.
190 * @param date The date.
191 * @param mzID Receives the meta zone ID for the given time zone ID at the given date. If the time zone does not have a
192 * corresponding meta zone at the given date or the implementation does not support meta zones, "bogus" state
197 virtual UnicodeString& getMetaZoneID(const UnicodeString& tzID, UDate date, UnicodeString& mzID) const = 0;
263 * Returns the display name of the time zone at the given date.
271 * @param date The date
[all...]
/external/libmtp/examples/
H A Dtracks.c39 if (track->date != NULL)
40 printf(" Date: %s\n", track->date);
/external/markdown/markdown/extensions/
H A Drss.py27 month, date, year = heading.split()
30 return rdftime(" ".join((month, date, year, "12:00:00 AM")))
42 return "date"
/external/nist-sip/java/gov/nist/javax/sip/
H A DUtils.java137 String date = Long.toString(System.currentTimeMillis() + callIDCounter++
139 byte cid[] = digester.digest(date.getBytes());
/external/skia/tools/tests/
H A Drun.sh71 # correct and up to date, and we don't download them again.
118 START_TIMESTAMP=$(date +%s)
121 END_TIMESTAMP=$(date +%s)
/external/chromium_org/third_party/icu/source/i18n/
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...]
/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

Completed in 614 milliseconds

1234567891011>>