Searched defs:BC (Results 1 - 7 of 7) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/wildcards/neg/
H A DCastFail10.java42 private class BC<T> extends BA<Integer> { } class in class:CastTest
H A DCastFail8.java42 private class BC<T> extends BA<Integer> { } class in class:CastTest
48 o = (BC<?>) (BA<String>) null; // <<fail 8>>
H A DCastFail9.java42 private class BC<T> extends BA<Integer> { } class in class:CastTest
H A DCastWarn14.java77 private class BC<T> extends BA<Integer> { } class in class:CastTest
83 o = (BC<?>) (BA<Integer>) null; // <<pass>>
84 o = (BC<?>) (BA<String>) null; // <<fail 8>>
/openjdk7/langtools/test/tools/javac/generics/wildcards/pos/
H A DCastTest.java70 private class BC<T> extends BA<Integer> { } class in class:CastTest
76 o = (BC<?>) (BA<Integer>) null; // <<pass>>
/openjdk7/jdk/test/java/text/Format/DateFormat/
H A DBug4823811.java52 private static int BC = GregorianCalendar.BC; field in class:Bug4823811
543 System.out.println((givenGC.get(ERA) == BC) ? "(BC)" : "(AD)");
555 System.out.println((givenGC.get(ERA) == BC) ? "(BC)" : "(AD)");
/openjdk7/jdk/src/share/classes/java/util/
H A DGregorianCalendar.java82 * leap year rules were applied irregularly, and before 45 BC the Julian
361 * The sequence of years at the transition from <code>BC</code> to <code>AD</code> is
362 * ..., 2 BC, 1 BC, 1 AD, 2 AD,...
366 public static final int BC = 0; field in class:GregorianCalendar
370 * the period before the common era, the same value as {@link #BC}.
379 * The sequence of years at the transition from <code>BC</code> to <code>AD</code> is
380 * ..., 2 BC, 1 BC, 1 AD, 2 AD,...
794 * the given year is a leap year. To specify BC yea
[all...]

Completed in 249 milliseconds