Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dincaltst.cpp456 UDate otherDate = fmt.parse(expected, status); in TestBuddhistFormat() local
457 if(otherDate != aDate) { in TestBuddhistFormat()
459 fmt.format(otherDate, str3); in TestBuddhistFormat()
460 …correct of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(… in TestBuddhistFormat()
536 UDate otherDate = fmt.parse(expected, status); in TestJapaneseFormat() local
537 if(otherDate != aDate) { in TestJapaneseFormat()
541 fmt.format(otherDate, str3); in TestJapaneseFormat()
542 …rrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + … in TestJapaneseFormat()
562 otherDate = fmti.parse(expected, status); in TestJapaneseFormat()
563 if(otherDate != aDate) { in TestJapaneseFormat()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DJapaneseTest.java308 Date otherDate; in Test5345parse() local
310 otherDate = fmt.parse(expected); in Test5345parse()
311 if(!otherDate.equals(aDate)) { in Test5345parse()
315 str3 = fmt.format(otherDate); in Test5345parse()
316 long oLong = otherDate.getTime(); in Test5345parse()
317 long aLong = otherDate.getTime(); in Test5345parse()
320 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() ); in Test5345parse()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DJapaneseTest.java305 Date otherDate; in Test5345parse() local
307 otherDate = fmt.parse(expected); in Test5345parse()
308 if(!otherDate.equals(aDate)) { in Test5345parse()
312 str3 = fmt.format(otherDate); in Test5345parse()
313 long oLong = otherDate.getTime(); in Test5345parse()
314 long aLong = otherDate.getTime(); in Test5345parse()
317 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()