Lines Matching refs:c0
1606 Calendar c0 = new GregorianCalendar(tz, Locale.US);
1609 c0.set(1995, MAY, 23, 19, 48, 34);
1610 c0.set(Calendar.MILLISECOND, 584);
1620 testDateTime("%tM", "48", c0);
1621 testDateTime("%tN", "584000000", c0);
1622 testDateTime("%tL", "584", c0);
1623 // testDateTime("%tQ", "801283714584", c0);
1625 testDateTime("%ts", String.valueOf(c0.getTimeInMillis() / 1000), c0);
1626 testDateTime("%tS", "34", c0);
1627 testDateTime("%tT", "19:48:34", c0);
1640 testDateTime("%ta", "Tue", c0);
1641 testDateTime("%tA", "Tuesday", c0);
1642 testDateTime("%tb", "May", c0);
1643 testDateTime("%tB", "May", c0);
1644 testDateTime("%tC", "19", c0);
1645 testDateTime("%td", "23", c0);
1646 testDateTime("%te", "23", c0);
1647 testDateTime("%th", "May", c0);
1648 testDateTime("%tj", "143", c0);
1649 testDateTime("%tm", "05", c0);
1650 testDateTime("%ty", "95", c0);
1651 testDateTime("%tY", "1995", c0);
1656 testDateTime("%tz", "-0800", c0);
1657 testDateTime("%tZ", "PST", c0);
1681 testDateTime("%tr", "07:48:34 PM", c0);
1682 testDateTime("%tR", "19:48", c0);
1683 testDateTime("%tc", "Tue May 23 19:48:34 PST 1995", c0);
1684 testDateTime("%tD", "05/23/95", c0);
1685 testDateTime("%tF", "1995-05-23", c0);
1686 testDateTime("%-12tF", "1995-05-23 ", c0);
1687 testDateTime("%12tF", " 1995-05-23", c0);