HomeSort by relevance Sort by last modified time
    Searched defs:gc2 (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/test/java/libcore/java/util/
OldGregorianCalendarTest.java 35 GregorianCalendar gc2 = new GregorianCalendar(TimeZone.getTimeZone("GMT+2"), Locale.US); local
36 gc2.setTime(now);
38 assertTrue(gc2.get(Calendar.HOUR) == ((gc1.get(Calendar.HOUR) + 1) % 12));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
GregorianCalendarTest.java 138 GregorianCalendar gc2 = new GregorianCalendar(AMERICA_CHICAGO); local
139 gc2.setTime(date);
142 gc1.get(Calendar.HOUR), ((gc2.get(Calendar.HOUR) + 1) % 12));
173 GregorianCalendar gc2 = new GregorianCalendar(AMERICA_NEW_YORK, Locale.JAPAN); local
174 gc2.setTime(date);
180 assertTrue("Locales not created correctly", gc1.equals(gc2)
274 GregorianCalendar gc2 = new GregorianCalendar(2000, 11, 6); local
277 assertTrue("Equality check failed", !gc1.equals(gc2));
288 GregorianCalendar gc2 = new GregorianCalendar(1996, 1, 1); local
296 29, gc2.getActualMaximum(Calendar.DAY_OF_MONTH))
639 GregorianCalendar gc2 = new GregorianCalendar(1972, Calendar.OCTOBER, local
    [all...]

Completed in 189 milliseconds