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 154 GregorianCalendar gc2 = new GregorianCalendar(AMERICA_CHICAGO); local
155 gc2.setTime(date);
158 gc1.get(Calendar.HOUR), ((gc2.get(Calendar.HOUR) + 1) % 12));
189 GregorianCalendar gc2 = new GregorianCalendar(AMERICA_NEW_YORK, Locale.JAPAN); local
190 gc2.setTime(date);
196 assertTrue("Locales not created correctly", gc1.equals(gc2)
290 GregorianCalendar gc2 = new GregorianCalendar(2000, 11, 6); local
293 assertTrue("Equality check failed", !gc1.equals(gc2));
304 GregorianCalendar gc2 = new GregorianCalendar(1996, 1, 1); local
312 29, gc2.getActualMaximum(Calendar.DAY_OF_MONTH))
649 GregorianCalendar gc2 = new GregorianCalendar(1972, Calendar.OCTOBER, local
    [all...]

Completed in 158 milliseconds