Home
last modified time | relevance | path

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

/external/icu/icu4c/source/test/intltest/
Dincaltst.cpp435 UDate otherDate = fmt->parse(expected, status); in TestBuddhistFormat() local
436 if(otherDate != aDate) { in TestBuddhistFormat()
438 fmt->format(otherDate, str3); in TestBuddhistFormat()
439 …correct of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(… in TestBuddhistFormat()
520 UDate otherDate = fmt->parse(expected, status); in TestJapaneseFormat() local
521 if(otherDate != aDate) { in TestJapaneseFormat()
525 fmt->format(otherDate, str3); in TestJapaneseFormat()
526 …rrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + … in TestJapaneseFormat()
551 UDate otherDate = fmt->parse(expected, status); in TestJapaneseFormat() local
552 if(otherDate != aDate) { in TestJapaneseFormat()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DJapaneseTest.java234 Date otherDate; in Test5345parse() local
236 otherDate = fmt.parse(expected); in Test5345parse()
237 if(!otherDate.equals(aDate)) { in Test5345parse()
241 str3 = fmt.format(otherDate); in Test5345parse()
242 long oLong = otherDate.getTime(); in Test5345parse()
243 long aLong = otherDate.getTime(); in Test5345parse()
246 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() ); in Test5345parse()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DJapaneseTest.java237 Date otherDate; in Test5345parse() local
239 otherDate = fmt.parse(expected); in Test5345parse()
240 if(!otherDate.equals(aDate)) { in Test5345parse()
244 str3 = fmt.format(otherDate); in Test5345parse()
245 long oLong = otherDate.getTime(); in Test5345parse()
246 long aLong = otherDate.getTime(); in Test5345parse()
249 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()