Home | History | Annotate | Download | only in regression

Lines Matching refs:sdf

35             SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd z");
40 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd z");
42 sdf.parse("2000.01.01 PST");
47 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd zzzz");
49 sdf.parse("2000.01.01 Pacific Standard Time");
54 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd");
56 sdf.parse("2000.01.01");
62 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd z");
63 sdf.parse("2000.01.01 PST");
69 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd zzzz");
70 sdf.parse("2000.01.01 Pacific Standard Time");
75 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd z");
77 sdf.format(new Date());
82 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd zzzz");
84 sdf.format(new Date());
97 SimpleDateFormat sdf = new SimpleDateFormat("yyyy.MM.dd zzzz", locale);
99 System.out.printf("Creating first SDF: %,d ns\n", end-start);
103 sdf.setTimeZone(TimeZone.getTimeZone("Hongkong"));
106 sdf.parse("2000.1.1 Kubanische Normalzeit");
111 sdf.format(new Date());