HomeSort by relevance Sort by last modified time
    Searched refs:otherDate (Results 1 - 9 of 9) sorted by null

  /external/icu/icu4c/source/test/intltest/
incaltst.cpp 434 UDate otherDate = fmt->parse(expected, status);
435 if(otherDate != aDate) {
437 fmt->format(otherDate, str3);
438 errln("Parse incorrect of " + escape(expected) + " - wanted " + aDate + " but got " + otherDate + ", " + escape(str3));
519 UDate otherDate = fmt->parse(expected, status);
520 if(otherDate != aDate) {
524 fmt->format(otherDate, str3);
525 errln("Parse incorrect of " + expected + " - wanted " + aDate + " but got " + " = " + otherDate + ", " + str3 + " = " + CalendarTest::calToStr(*cal2) );
550 UDate otherDate = fmt->parse(expected, status);
551 if(otherDate != aDate) {
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
JapaneseTest.java 232 Date otherDate;
234 otherDate = fmt.parse(expected);
235 if(!otherDate.equals(aDate)) {
239 str3 = fmt.format(otherDate);
240 long oLong = otherDate.getTime();
241 long aLong = otherDate.getTime();
244 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() );
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
JapaneseTest.java 231 Date otherDate;
233 otherDate = fmt.parse(expected);
234 if(!otherDate.equals(aDate)) {
238 str3 = fmt.format(otherDate);
239 long oLong = otherDate.getTime();
240 long aLong = otherDate.getTime();
243 otherDate + " ("+oLong+") = " + str3 + " not " + dd.toString() );
  /libcore/ojluni/src/main/java/java/time/chrono/
HijrahDate.java 624 HijrahDate otherDate = (HijrahDate) obj;
625 return prolepticYear == otherDate.prolepticYear
626 && this.monthOfYear == otherDate.monthOfYear
627 && this.dayOfMonth == otherDate.dayOfMonth
628 && getChronology().equals(otherDate.getChronology());
MinguoDate.java 455 MinguoDate otherDate = (MinguoDate) obj;
456 return this.isoDate.equals(otherDate.isoDate);
ThaiBuddhistDate.java 455 ThaiBuddhistDate otherDate = (ThaiBuddhistDate) obj;
456 return this.isoDate.equals(otherDate.isoDate);
JapaneseDate.java 696 JapaneseDate otherDate = (JapaneseDate) obj;
697 return this.isoDate.equals(otherDate.isoDate);
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 467 XMPNode otherDate = XMPNodeUtils.findChildNode(exifSchema, "exif:DateTimeOriginal",
469 if (otherDate == null)
471 otherDate = XMPNodeUtils.findChildNode(exifSchema, "exif:DateTimeDigitized", false);
474 binOtherDate = XMPUtils.convertToDate(otherDate.getValue());
  /libcore/ojluni/src/main/java/java/time/
LocalDate.java     [all...]

Completed in 802 milliseconds