Lines Matching refs:verify1

695     verify1("1999  10th day of January  is :", caldef, datdef, 1999, UCAL_JANUARY, 10);  in TestGetSetDateAPI()
697 verify1("1999 3rd day of December is :", caldef, datdef, 1999, UCAL_DECEMBER, 3); in TestGetSetDateAPI()
699 verify1("2000 3rd day of May is :", caldef, datdef, 2000, UCAL_MAY, 3); in TestGetSetDateAPI()
701 verify1("1999 32th day of August is :", caldef, datdef, 1999, UCAL_SEPTEMBER, 1); in TestGetSetDateAPI()
703 verify1("1999 0th day of March is :", caldef, datdef, 1999, UCAL_FEBRUARY, 28); in TestGetSetDateAPI()
796 verify1("1997 third day of June = ", cal, datdef, 1997, UCAL_JUNE, 3); in TestFieldGetSet()
802 verify1("1997 first Tuesday in June = ", cal, datdef, 1997, UCAL_JUNE, 3); in TestFieldGetSet()
808 verify1("1997 last Tuesday in June = ", cal, datdef,1997, UCAL_JUNE, 24); in TestFieldGetSet()
828 verify1("1997 Tuesday in week 1 of June = ", cal,datdef, 1997, UCAL_JUNE, 3); in TestFieldGetSet()
834 verify1("1997 Tuesday in week 5 of June = ", cal,datdef, 1997, UCAL_JULY, 1); in TestFieldGetSet()
853 verify1("1997 Tuesday in week 1 of year = ", cal, datdef,1996, UCAL_DECEMBER, 31); in TestFieldGetSet()
858 verify1("1997 Tuesday in week 10 of year = ", cal,datdef, 1997, UCAL_MARCH, 4); in TestFieldGetSet()
862 verify1("1999 1st day of the year =", cal, datdef, 1999, UCAL_JANUARY, 1); in TestFieldGetSet()
874 verify1("1999 -3th month should be", cal, datdef, 1998, UCAL_OCTOBER, 1); in TestFieldGetSet()
1427 static void verify1(const char* msg, UCalendar* c, UDateFormat* dat, int32_t year, int32_t month, i… in verify1() function