Searched refs:c2 (Results 1 - 25 of 476) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/runtime/modules/p2/
H A Dc2.java27 public class c2 { class
/openjdk10/hotspot/test/runtime/modules/AccessCheck/p2/
H A Dc2.java28 public class c2 { class
/openjdk10/hotspot/test/runtime/modules/p1/
H A Dc1.java27 import p2.c2;
32 p2.c2 c2_obj = new p2.c2();
/openjdk10/hotspot/test/runtime/modules/AccessCheck/p1/
H A Dc1Loose.java25 import p2.c2;
30 p2.c2 c2_obj = new p2.c2();
H A Dc1.java28 import p2.c2;
33 p2.c2 c2_obj = new p2.c2();
H A Dc1ReadEdge.java25 import p2.c2;
30 // to the unnamed module, where p2.c2 will be defined.
37 p2.c2 c2_obj = new p2.c2();
H A Dc1ReadEdgeDiffLoader.java26 import p2.c2;
32 // and the unnamed module that defines p2.c2. This must be
42 // where p2.c2 will be defined.
57 p2.c2 c2_obj = new p2.c2();
/openjdk10/hotspot/test/runtime/modules/p3/
H A Dc3.java27 public class c3 extends p2.c2 {
/openjdk10/langtools/test/tools/javac/ClassLiterals/
H A DLiteralInterface_1.java30 Class c2 = Integer.class; field in interface:LiteralInterface_1
H A DLiteralInterfaceImpl.java38 private static void check(Class c1, Class c2) throws Exception{ argument
39 if (c1 != c2) {
40 throw new Exception("mismatch: " + c1 + ", " + c2);
46 check(c2, Integer.class);
/openjdk10/langtools/test/tools/javap/classfile/deps/p/
H A DC1.java27 C2 c2; field in class:C1
/openjdk10/jdk/src/java.desktop/share/native/libawt/java2d/loops/
H A DIntDcm.h53 #define ExtractIntDcmComponentsX123(pixel, c1, c2, c3) \
56 (c2) = ((pixel) >> 8) & 0xff; \
60 #define ExtractIntDcmComponents123X(pixel, c1, c2, c3) \
63 (c2) = ((pixel) >> 16) & 0xff; \
67 #define ExtractIntDcmComponents1234(pixel, c1, c2, c3, c4) \
71 (c2) = ((pixel) >> 16) & 0xff; \
75 #define ComposeIntDcmComponentsX123(c1, c2, c3) \
76 (((((c1) << 8) | (c2)) << 8) | (c3))
78 #define ComposeIntDcmComponents123X(c1, c2, c3) \
79 ((((((c1) << 8) | (c2)) <<
[all...]
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/internal/
H A DInternalTypeUtilities.java44 * @param c2 another type
45 * @return true if either c1 is assignable from c2 or c2 is assignable from c1.
47 public static boolean areAssignable(final Class<?> c1, final Class<?> c2) { argument
48 return c1.isAssignableFrom(c2) || c2.isAssignableFrom(c1);
93 * Given two types represented by c1 and c2, returns a type that is their
97 * @param c2 another type
103 public static Class<?> getCommonLosslessConversionType(final Class<?> c1, final Class<?> c2) { argument
104 if(c1 == c2) {
128 getMostSpecificCommonTypeUnequalNonprimitives(final Class<?> c1, final Class<?> c2) argument
168 getAssignables(final Class<?> c1, final Class<?> c2) argument
174 collectAssignables(final Class<?> c1, final Class<?> c2, final Set<Class<?>> s) argument
[all...]
/openjdk10/jdk/test/sun/net/www/protocol/jar/
H A DJarURLConnectionUseCaches.java54 JarURLConnection c2 = (JarURLConnection)url.openConnection();
55 c2.setDefaultUseCaches( false );
56 c2.setUseCaches( true );
57 c2.connect();
60 c2.getInputStream().read();
61 c2.getInputStream().close();
/openjdk10/jdk/test/java/nio/channels/spi/SelectorProvider/inheritedChannel/
H A DNullTest.java41 Channel c1, c2;
44 c2 = System.inheritedChannel();
48 if (c1 != null || c2 != null) {
/openjdk10/hotspot/test/compiler/c2/
H A DTest7169782.java30 * -XX:CompileCommand=compileonly,compiler.c2.Test7169782::<clinit>
31 * compiler.c2.Test7169782
34 package compiler.c2;
H A DTest6711100.java30 * -XX:CompileCommand=compileonly,compiler.c2.Test6711100::<init>
31 * compiler.c2.Test6711100
34 package compiler.c2;
/openjdk10/langtools/test/tools/javac/generics/inference/5073060/
H A DT5073060.java34 C2 c2 = null;
37 m1(c2, c3).c1m1();
38 m1(c2, c3).i1m1();
39 m1(c2, c3).i2m1();
H A DT5073060a.java45 public <T extends C1 & I> void test(C2 c2, C3 c3, T t) { argument
46 m1(c2, c3).c1m1(); // error
48 (t != null ? c2 : c3).c1m1(); // error
/openjdk10/langtools/test/tools/javac/lambda/lambdaExpression/
H A DInvalidExpression3.java14 Comparator<Integer> c2 = (Integer i1, Integer i2) -> { return "0"; }; //return type need to match
/openjdk10/nashorn/test/script/basic/
H A DJDK-8062583.js48 var c2 = new CustomError();
49 Error.captureStackTrace(c2);
50 print(c2.stack.replace(/\\/g, '/'));
51 print(c2.nashornException.toString().replace(/\\/g, '/'));
/openjdk10/langtools/test/tools/javac/
H A DThrowsIntersection_1.java48 abstract class c2 implements b, a {} class in inherits:b,a
56 class e extends c2 {
H A DThrowsIntersection_2.java49 abstract class c2 implements b, a {} class in inherits:b,a
57 class e extends c2 {
/openjdk10/langtools/test/tools/javac/DefiniteAssignment/8156180/
H A DT8156180.java11 public int a2, b2, c2, d2; field in class:T8156180
16 c2 = ((this)).c1;
/openjdk10/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DConcatTest.java83 public static Object[] createTests(String scenario, Collection<Integer> c1, Collection<Integer> c2, Collection<Integer> expected) { argument
85 new ConcatTest(scenario, c1, c2, expected)
91 protected final Collection<Integer> c2; field in class:ConcatTest
94 public ConcatTest(String scenario, Collection<Integer> c1, Collection<Integer> c2, Collection<Integer> expected) { argument
97 this.c2 = c2;
102 Stream<Integer> s2s = c2.stream();
104 Stream<Integer> s2p = c2.parallelStream();
168 assertRefConcat(c1.stream(), c2.stream(), false, true);
170 assertRefConcat(c1.parallelStream(), c2
[all...]

Completed in 228 milliseconds

1234567891011>>