Searched refs:test2 (Results 1 - 25 of 334) sorted by relevance

1234567891011>>

/openjdk10/langtools/test/tools/javac/depDocComment/
H A DDeprecatedDocComment4.java15 void test2() {}; method in class:DeprecatedDocComment4
/openjdk10/jdk/test/java/lang/String/
H A DCompareIC.java39 String test2 = "Test";
43 comparer.testTriplet(test1, test2, test3);
44 test2 = test2.toUpperCase();
45 comparer.testTriplet(test1, test2, test3);
46 test2 = test2.toLowerCase();
47 comparer.testTriplet(test1, test2, test3);
/openjdk10/jdk/test/java/util/ServiceLoader/modules/test2/
H A Dmodule-info.java28 module test2 {
/openjdk10/hotspot/test/compiler/c2/
H A DTest6931567.java44 boolean test2 = false;
51 test2 ^= true;
54 if (test1 != test2) {
56 + "\n\ttest2=" + test2);
/openjdk10/jdk/test/java/net/URLClassLoader/sealing/
H A DCheckSealed.java31 test2();
33 test2();
48 private static void test2() { method in class:CheckSealed
/openjdk10/jdk/test/sun/security/util/FilePermCompat/
H A DFlag.java43 boolean test2;
53 test2 = true;
55 test2 = false;
59 test2 != Boolean.parseBoolean(args[1])) {
60 throw new Exception("Test failed: " + test1 + " " + test2);
/openjdk10/jdk/test/tools/launcher/modules/addexports/src/m2/jdk/test2/
H A DMain.java24 package jdk.test2;
/openjdk10/langtools/test/jdk/javadoc/doclet/testRepeatedAnnotations/pkg/
H A DD.java33 public void test2() {} method in class:D
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/bytecode/
H A DBC_ldc_06.java37 return test2().getName();
40 static Class<BC_ldc_06> test2() { method in class:BC_ldc_06
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/optimize/
H A DDeadCode02.java37 if (test2()) {
44 public static boolean test2() { method in class:DeadCode02
/openjdk10/langtools/test/tools/javac/generics/
H A DMissingBridge.java52 TestInterface test2 = test;
58 test2.foo("blah");
/openjdk10/langtools/test/tools/javac/cast/6270087/
H A DT6270087neg.java35 <U extends Integer, V extends String> void test2(Foo<V> lv) { method in class:T6270087neg
/openjdk10/langtools/test/tools/javac/diags/examples/
H A DCantRefNonEffectivelyFinalVar.java39 void test2() { method in class:CantRefNonEffectivelyFinalVar
/openjdk10/nashorn/test/src/jdk/nashorn/api/scripting/test/
H A DVariableArityTestInterface.java31 public String test2(int i, String... strings); method in interface:VariableArityTestInterface
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/except/
H A DThrow_Synchronized04.java35 public synchronized boolean test2(int i) throws Exception { method in class:Throw_Synchronized04.TestClass
46 return object.test2(i);
H A DThrow_Synchronized03.java37 return test2(i);
41 public static synchronized boolean test2(int i) throws Exception { method in class:Throw_Synchronized03
H A DThrow_Synchronized01.java34 return i == 0 || test2(i);
38 public static boolean test2(int i) throws Exception { method in class:Throw_Synchronized01
H A DThrow_NPE_01.java34 int a = test2(i);
39 public static int test2(int i) { method in class:Throw_NPE_01
H A DThrow_InNested.java34 return 42 + test2(i);
37 public static int test2(int i) throws Exception { method in class:Throw_InNested
H A DThrow_Synchronized05.java35 public synchronized boolean test2(int i) throws Exception { method in class:Throw_Synchronized05.TestClass
51 return object.test2(i);
/openjdk10/nashorn/test/script/basic/
H A Deval.js41 function test2() { function
61 test2();
/openjdk10/jdk/test/java/util/ResourceBundle/
H A DResourceBundleTest.java97 String[] test2 = bundle.getStringArray("All");
98 if (test2.length != 4)
99 errln("TestResource_fr returned wrong number of elements for \"All\": got " + test2.length);
100 else if (!test2[0].equals("'Twas brillig, and the slithy toves") ||
101 !test2[1].equals("Did gyre and gimble in the wabe.") ||
102 !test2[2].equals("All mimsy were the borogoves,") ||
103 !test2[3].equals("And the mome raths outgrabe."))
113 test2 = bundle.getStringArray("Men");
114 if (test2.length != 3)
115 errln("TestResource_fr returned wrong number of elements for \"Men\": got " + test2
[all...]
/openjdk10/hotspot/test/compiler/rangechecks/
H A DTestUncommonTrapMerging.java55 // Compile test2 with uncommon traps at path 1 and path 2
57 mytest.test2(-1, 0);
60 // Compile test3 which inlines test2 with uncommon traps at
70 throw new RuntimeException("test2 returned through wrong path!");
87 public boolean test2(int arg, int value) { method in class:TestUncommonTrapMerging
105 return test2(arg, i);
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/
H A DMonitorenter02.java43 return test2();
47 private static boolean test2() { method in class:Monitorenter02
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DShortCircuitNodeTest.java43 * if a ShortCircuitOrNode is created for the check inside test2, then faulty handling of
57 if (test2(v, b)) {
62 public static boolean test2(int a, int b) { method in class:ShortCircuitNodeTest

Completed in 211 milliseconds

1234567891011>>