Home
last modified time | relevance | path

Searched refs:otherDate (Results 1 – 4 of 4) sorted by relevance

/external/icu/icu4c/source/test/intltest/
Dincaltst.cpp434 UDate otherDate = fmt->parse(expected, status); in TestBuddhistFormat() local
435 if(otherDate != aDate) { in TestBuddhistFormat()
437 fmt->format(otherDate, str3); in TestBuddhistFormat()
438 …correct of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(… in TestBuddhistFormat()
519 UDate otherDate = fmt->parse(expected, status); in TestJapaneseFormat() local
520 if(otherDate != aDate) { in TestJapaneseFormat()
524 fmt->format(otherDate, str3); in TestJapaneseFormat()
525 …rrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + … in TestJapaneseFormat()
550 UDate otherDate = fmt->parse(expected, status); in TestJapaneseFormat() local
551 if(otherDate != aDate) { in TestJapaneseFormat()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DJapaneseTest.java231 Date otherDate; in Test5345parse() local
233 otherDate = fmt.parse(expected); in Test5345parse()
234 if(!otherDate.equals(aDate)) { in Test5345parse()
238 str3 = fmt.format(otherDate); in Test5345parse()
239 long oLong = otherDate.getTime(); in Test5345parse()
240 long aLong = otherDate.getTime(); in Test5345parse()
243 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() ); in Test5345parse()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DJapaneseTest.java232 Date otherDate; in Test5345parse() local
234 otherDate = fmt.parse(expected); in Test5345parse()
235 if(!otherDate.equals(aDate)) { in Test5345parse()
239 str3 = fmt.format(otherDate); in Test5345parse()
240 long oLong = otherDate.getTime(); in Test5345parse()
241 long aLong = otherDate.getTime(); in Test5345parse()
244 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() ); in Test5345parse()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNormalizer.java467 XMPNode otherDate = XMPNodeUtils.findChildNode(exifSchema, "exif:DateTimeOriginal", in fixGPSTimeStamp() local
469 if (otherDate == null) in fixGPSTimeStamp()
471 otherDate = XMPNodeUtils.findChildNode(exifSchema, "exif:DateTimeDigitized", false); in fixGPSTimeStamp()
474 binOtherDate = XMPUtils.convertToDate(otherDate.getValue()); in fixGPSTimeStamp()