• Home
  • Raw
  • Download

Lines Matching refs:ucal_get

536     hour=ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status);  in TestGetSetDateAPI()
545 if(hour == ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status)) in TestGetSetDateAPI()
547 …else if((hour-8 + 1) != ucal_get(caldef2, UCAL_HOUR_OF_DAY, &status)) /*because it is not in dayli… in TestGetSetDateAPI()
564 zoneOffset = ucal_get(caldef2, UCAL_ZONE_OFFSET, &status); in TestGetSetDateAPI()
581 zoneOffset = ucal_get(caldef2, UCAL_ZONE_OFFSET, &status); in TestGetSetDateAPI()
696 if(ucal_get(cal, UCAL_YEAR, &status)!=1999 || ucal_get(cal, UCAL_MONTH, &status)!=2 || in TestFieldGetSet()
697 ucal_get(cal, UCAL_DATE, &status)!=12 || ucal_get(cal, UCAL_HOUR, &status)!=5) in TestFieldGetSet()
699 …else if(ucal_get(cal, UCAL_DAY_OF_WEEK_IN_MONTH, &status)!=2 || ucal_get(cal, UCAL_DAY_OF_WEEK, &s… in TestFieldGetSet()
700 …|| ucal_get(cal, UCAL_WEEK_OF_MONTH, &status)!=2 || ucal_get(cal, UCAL_WEEK_OF_YEAR, &status)!= 11) in TestFieldGetSet()
1002 val = ucal_get(cal, UCAL_DAY_OF_WEEK, &status); in TestGetLimits()
1013 val = ucal_get(cal, UCAL_DAY_OF_WEEK_IN_MONTH, &status); in TestGetLimits()
1040 val=ucal_get(cal, UCAL_HOUR_OF_DAY, &status); in TestGetLimits()
1105 initialDOW = ucal_get(cal, UCAL_DAY_OF_WEEK, &status); in TestDOWProgression()
1118 newDOW = ucal_get(cal, UCAL_DAY_OF_WEEK, &status); in TestDOWProgression()
1199 offset = ucal_get(cal, UCAL_ZONE_OFFSET, &status); in testZones()
1200 offset += ucal_get(cal, UCAL_DST_OFFSET, &status); in testZones()
1209 utc = ((ucal_get(cal, UCAL_HOUR_OF_DAY, &status) * 60 + in testZones()
1210 ucal_get(cal, UCAL_MINUTE, &status)) * 60 + in testZones()
1211 ucal_get(cal, UCAL_SECOND, &status)) * 1000 + in testZones()
1212 ucal_get(cal, UCAL_MILLISECOND, &status) - offset; in testZones()
1246 if (ucal_get(c, UCAL_YEAR, &status) != y || in checkDateTime()
1247 ucal_get(c, UCAL_MONTH, &status) != m || in checkDateTime()
1248 ucal_get(c, UCAL_DATE, &status) != d || in checkDateTime()
1249 ucal_get(c, UCAL_HOUR, &status) != hr || in checkDateTime()
1250 ucal_get(c, UCAL_MINUTE, &status) != min || in checkDateTime()
1251 ucal_get(c, UCAL_SECOND, &status) != sec || in checkDateTime()
1252 ucal_get(c, UCAL_MILLISECOND, &status) != ms) { in checkDateTime()
1255 ucal_get(c, UCAL_YEAR, &status), in checkDateTime()
1256 ucal_get(c, UCAL_MONTH, &status) + 1, in checkDateTime()
1257 ucal_get(c, UCAL_DATE, &status), in checkDateTime()
1258 ucal_get(c, UCAL_HOUR, &status), in checkDateTime()
1259 ucal_get(c, UCAL_MINUTE, &status) + 1, in checkDateTime()
1260 ucal_get(c, UCAL_SECOND, &status), in checkDateTime()
1261 ucal_get(c, UCAL_MILLISECOND, &status) ); in checkDateTime()
1278 if (ucal_get(c,UCAL_YEAR, &status) != y || in checkDate()
1279 ucal_get(c, UCAL_MONTH, &status) != m || in checkDate()
1280 ucal_get(c, UCAL_DATE, &status) != d) { in checkDate()
1283 ucal_get(c, UCAL_YEAR, &status), in checkDate()
1284 ucal_get(c, UCAL_MONTH, &status) + 1, in checkDate()
1285 ucal_get(c, UCAL_DATE, &status) ); in checkDate()
1306 if (ucal_get(c, UCAL_YEAR, &status) == year && in verify1()
1307 ucal_get(c, UCAL_MONTH, &status) == month && in verify1()
1308 ucal_get(c, UCAL_DATE, &status) == day) { in verify1()
1343 if (ucal_get(c, UCAL_YEAR, &status) == year && in verify2()
1344 ucal_get(c, UCAL_MONTH, &status) == month && in verify2()
1345 ucal_get(c, UCAL_DATE, &status) == day && in verify2()
1346 ucal_get(c, UCAL_HOUR, &status) == hour && in verify2()
1347 ucal_get(c, UCAL_MINUTE, &status) == min && in verify2()
1348 ucal_get(c, UCAL_SECOND, &status) == sec && in verify2()
1349 ucal_get(c, UCAL_AM_PM, &status) == am_pm ){ in verify2()