Home | History | Annotate | Download | only in format

Lines Matching refs:STANDALONE

55         int[] context = {DateFormatSymbols.STANDALONE, DateFormatSymbols.FORMAT};
76 int[] context = {DateFormatSymbols.STANDALONE, DateFormatSymbols.FORMAT};
227 final String[] standaloneMonths = en.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
228 fr.setMonths(standaloneMonths,DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
229 final String[] standaloneMonths1 = fr.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
232 errln("ERROR: setMonths(STANDALONE,WIDE) failed (different size array)");
237 errln("ERROR: setMonths(STANDALONE,WIDE) failed (different string values)");
242 final String[] standaloneShortMonths = en.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
243 fr.setMonths(standaloneShortMonths,DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
244 final String[] standaloneShortMonths1 = fr.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
247 errln("ERROR: setMonths(STANDALONE,ABBREVIATED) failed (different size array)");
252 errln("ERROR: setMonths(STANDALONE,ABBREVIATED) failed (different string values)");
257 final String[] standaloneNarrowMonths = en.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
258 fr.setMonths(standaloneNarrowMonths,DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
259 final String[] standaloneNarrowMonths1 = fr.getMonths(DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
262 errln("ERROR: setMonths(STANDALONE,NARROW) failed (different size array)");
267 errln("ERROR: setMonths(STANDALONE,NARROW) failed (different string values)");
351 final String[] standaloneWeekdays = en.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
352 fr.setWeekdays(standaloneWeekdays,DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
353 final String[] standaloneWeekdays1 = fr.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
356 errln("ERROR: setWeekdays(STANDALONE,WIDE) failed (different size array)");
361 errln("ERROR: setWeekdays(STANDALONE,WIDE) failed (different string values)");
366 final String[] standaloneShortWeekdays = en.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
367 final String[] standaloneShorterWeekdays = en.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.SHORT);
369 errln("ERROR: English standalone short weekday names don't match prefixes of standalone abbreviated names");
371 fr.setWeekdays(standaloneShortWeekdays,DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
372 final String[] standaloneShortWeekdays1 = fr.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
375 errln("ERROR: setWeekdays(STANDALONE,ABBREVIATED) failed (different size array)");
380 errln("ERROR: setWeekdays(STANDALONE,ABBREVIATED) failed (different string values)");
385 final String[] standaloneNarrowWeekdays = en.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
386 fr.setWeekdays(standaloneNarrowWeekdays,DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
387 final String[] standaloneNarrowWeekdays1 = fr.getWeekdays(DateFormatSymbols.STANDALONE,DateFormatSymbols.NARROW);
390 errln("ERROR: setWeekdays(STANDALONE,NARROW) failed (different size array)");
395 errln("ERROR: setWeekdays(STANDALONE,NARROW) failed (different string values)");
430 final String[] standaloneQuarters = en.getQuarters(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
431 fr.setQuarters(standaloneQuarters,DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
432 final String[] standaloneQuarters1 = fr.getQuarters(DateFormatSymbols.STANDALONE,DateFormatSymbols.WIDE);
435 errln("ERROR: setQuarters(STANDALONE, WIDE) failed (different size array)");
440 errln("ERROR: setQuarters(STANDALONE, WIDE) failed (different string values)");
445 final String[] standaloneShortQuarters = en.getQuarters(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
446 fr.setQuarters(standaloneShortQuarters,DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
447 final String[] standaloneShortQuarters1 = fr.getQuarters(DateFormatSymbols.STANDALONE,DateFormatSymbols.ABBREVIATED);
450 errln("ERROR: setQuarters(STANDALONE, ABBREVIATED) failed (different size array)");
455 errln("ERROR: setQuarters(STANDALONE, ABBREVIATED) failed (different string values)");
508 final String[] narrowYearNames = zhChiCal.getYearNames(DateFormatSymbols.STANDALONE, DateFormatSymbols.NARROW);
515 errln("ERROR: invalid STANDALONE/NARROW year names from zh@calendar=chinese");