Home
last modified time | relevance | path

Searched refs:toDate (Results 1 – 23 of 23) sorted by relevance

/external/icu/android_icu4j/src/main/java/android/icu/util/
DDateInterval.java25 private final long toDate; field in DateInterval
35 toDate = to; in DateInterval()
53 return toDate; in getToDate()
62 return fromDate == di.fromDate && toDate == di.toDate; in equals()
71 return (int)(fromDate + toDate); in hashCode()
78 return String.valueOf(fromDate) + " " + String.valueOf(toDate); in toString()
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
DDateInterval.java25 private final long toDate; field in DateInterval
36 toDate = to; in DateInterval()
56 return toDate; in getToDate()
66 return fromDate == di.fromDate && toDate == di.toDate; in equals()
76 return (int)(fromDate + toDate); in hashCode()
84 return String.valueOf(fromDate) + " " + String.valueOf(toDate); in toString()
/external/icu/icu4c/source/common/
Ddtintrv.cpp27 toDate(to) in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
44 toDate = other.toDate; in operator =()
58 return ( fromDate == other.fromDate && toDate == other.toDate ); in operator ==()
Ducurr.cpp2140 UDate toDate = U_DATE_MAX; in ucurr_createCurrencyList() local
2149 toDate = (UDate)currDate64; in ucurr_createCurrencyList()
2158 entry->to = toDate; in ucurr_createCurrencyList()
2354 UDate toDate = (UDate)currDate64; in ucurr_countCurrencies() local
2356 if ((fromDate <= date) && (date < toDate)) in ucurr_countCurrencies()
2478 UDate toDate = (UDate)currDate64; in ucurr_forLocaleAndDate() local
2480 if ((fromDate <= date) && (date < toDate)) in ucurr_forLocaleAndDate()
/external/icu/icu4c/source/common/unicode/
Ddtintrv.h43 DateInterval(UDate fromDate, UDate toDate);
135 UDate toDate; variable
148 return toDate; in getToDate()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DDataDrivenCalendarTest.java179 long toDate = 0; in testOps() local
226 toDate = Long.parseLong(to.substring(kMILLIS.length())); in testOps()
284 if(toCalendar.getTimeInMillis()==toDate) { in testOps()
285 logln(caseString + " SUCCESS: got=expected="+toDate); in testOps()
295 toDate); in testOps()
299 toDate); in testOps()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DDataDrivenCalendarTest.java182 long toDate = 0; in testOps() local
229 toDate = Long.parseLong(to.substring(kMILLIS.length())); in testOps()
287 if(toCalendar.getTimeInMillis()==toDate) { in testOps()
288 logln(caseString + " SUCCESS: got=expected="+toDate); in testOps()
298 toDate); in testOps()
302 toDate); in testOps()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowDateIntervalFormat.java34 public static String formatDateInterval(long address, long fromDate, long toDate) { in formatDateInterval() argument
38 …INTERVAL_CACHE.get(address).format(new com.ibm.icu.util.DateInterval(fromDate, toDate), buffer, po… in formatDateInterval()
/external/icu/icu4c/source/i18n/
Dudateintervalformat.cpp70 UDate toDate, in udtitvfmt_format() argument
94 DateInterval interval = DateInterval(fromDate,toDate); in udtitvfmt_format()
/external/icu/icu4c/source/test/intltest/
Ddadrcal.cpp79 UDate toDate = 0; in testOps() local
191 toDate = udbg_stod(millis); in testOps()
265 if(!(toCalendar->getTime(status)==toDate) || U_FAILURE(status)){ in testOps()
269 logln(caseString + " SUCCESS: got=expected="+toDate); in testOps()
/external/conscrypt/common/src/main/java/org/conscrypt/
DOpenSSLX509CRL.java58 thisUpdate = toDate(NativeCrypto.X509_CRL_get_lastUpdate(mContext, this)); in OpenSSLX509CRL()
59 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this)); in OpenSSLX509CRL()
63 static Date toDate(long asn1time) throws ParsingException { in toDate() method in OpenSSLX509CRL
DOpenSSLX509Certificate.java71 notBefore = toDate(NativeCrypto.X509_get_notBefore(mContext, this)); in OpenSSLX509Certificate()
72 notAfter = toDate(NativeCrypto.X509_get_notAfter(mContext, this)); in OpenSSLX509Certificate()
82 private static Date toDate(long asn1time) throws ParsingException { in toDate() method in OpenSSLX509Certificate
DOpenSSLX509CRLEntry.java40 … revocationDate = OpenSSLX509CRL.toDate(NativeCrypto.get_X509_REVOKED_revocationDate(mContext)); in OpenSSLX509CRLEntry()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DOpenSSLX509CRL.java59 thisUpdate = toDate(NativeCrypto.X509_CRL_get_lastUpdate(mContext, this)); in OpenSSLX509CRL()
60 nextUpdate = toDate(NativeCrypto.X509_CRL_get_nextUpdate(mContext, this)); in OpenSSLX509CRL()
64 static Date toDate(long asn1time) throws ParsingException { in toDate() method in OpenSSLX509CRL
DOpenSSLX509Certificate.java74 notBefore = toDate(NativeCrypto.X509_get_notBefore(mContext, this)); in OpenSSLX509Certificate()
75 notAfter = toDate(NativeCrypto.X509_get_notAfter(mContext, this)); in OpenSSLX509Certificate()
85 private static Date toDate(long asn1time) throws ParsingException { in toDate() method in OpenSSLX509Certificate
DOpenSSLX509CRLEntry.java41 … revocationDate = OpenSSLX509CRL.toDate(NativeCrypto.get_X509_REVOKED_revocationDate(mContext)); in OpenSSLX509CRLEntry()
/external/icu/icu4c/source/i18n/unicode/
Dudateintervalformat.h178 UDate toDate,
/external/icu/libandroidicu/include/unicode/
Dudateintervalformat.h178 UDate toDate,
/external/snakeyaml/src/test/java/examples/jodatime/
DJodaTimeExampleTest.java55 Date someDate = new DateMidnight(9, 2, 21, DateTimeZone.forID("Europe/Amsterdam")).toDate(); in test109()
/external/opencensus-java/contrib/zpages/src/main/java/io/opencensus/contrib/zpages/
DStatszZPageHandler.java350 formatter.format("<td class=\"borderLL\">%s</td>", toDate(arg.getStart())); in emitViewInfo()
351 formatter.format("<td class=\"borderLL\">%s</td>", toDate(arg.getEnd())); in emitViewInfo()
363 private static Date toDate(Timestamp timestamp) { in toDate() method in StatszZPageHandler
/external/cldr/tools/java/org/unicode/cldr/test/
DTestMetazones.java158 long toDate = DateRange.parse(to, true); in fillMetazoneData() local
160 DateRange range = new DateRange(fromDate, toDate); in fillMetazoneData()
/external/cldr/tools/java/org/unicode/cldr/tool/
DCLDRModify.java1337 int toDate = 2018;
1370 … String tagString = leadingParenString + nf.format(fromDate) + separator + nf.format(toDate)
/external/icu/libandroidicu/static_shim/
Dshim.cpp1552 …mat_android(const UDateIntervalFormat * formatter, UDate fromDate, UDate toDate, UChar * result, i… in udtitvfmt_format_android() argument
1553 return udtitvfmt_format(formatter, fromDate, toDate, result, resultCapacity, position, status); in udtitvfmt_format_android()