Searched refs:test (Results 1 - 25 of 1522) sorted by relevance

1234567891011>>

/openjdk7/langtools/test/tools/javac/enum/
H A DFauxSpecialEnum1.java25 * @test
35 void test() {System.out.println("Concrete test");}
38 abstract void test();
40 abstract void test(); method in class:FauxSpecialEnum1
/openjdk7/jdk/test/java/util/Formatter/
H A DBasicFloat.java24 /* Type-specific source code for unit test
27 * We check in the generated source files so that the test tree can be used
51 private static void test(String fs, String exp, Object ... args) { method in class:BasicFloat
57 private static void test(Locale l, String fs, String exp, Object ... args) method in class:BasicFloat
64 private static void test(String fs, Object ... args) { method in class:BasicFloat
70 private static void test(String fs) { method in class:BasicFloat
114 test(fs);
128 test(fs, args);
334 public static void test() { method in class:BasicFloat
350 test(Local
[all...]
H A DBasicDoubleObject.java24 /* Type-specific source code for unit test
27 * We check in the generated source files so that the test tree can be used
51 private static void test(String fs, String exp, Object ... args) { method in class:BasicDoubleObject
57 private static void test(Locale l, String fs, String exp, Object ... args) method in class:BasicDoubleObject
64 private static void test(String fs, Object ... args) { method in class:BasicDoubleObject
70 private static void test(String fs) { method in class:BasicDoubleObject
114 test(fs);
128 test(fs, args);
334 public static void test() { method in class:BasicDoubleObject
350 test(Local
[all...]
H A DBasicBigDecimal.java24 /* Type-specific source code for unit test
27 * We check in the generated source files so that the test tree can be used
51 private static void test(String fs, String exp, Object ... args) { method in class:BasicBigDecimal
57 private static void test(Locale l, String fs, String exp, Object ... args) method in class:BasicBigDecimal
64 private static void test(String fs, Object ... args) { method in class:BasicBigDecimal
70 private static void test(String fs) { method in class:BasicBigDecimal
114 test(fs);
128 test(fs, args);
334 public static void test() { method in class:BasicBigDecimal
350 test(Local
[all...]
H A DBasicFloatObject.java24 /* Type-specific source code for unit test
27 * We check in the generated source files so that the test tree can be used
51 private static void test(String fs, String exp, Object ... args) { method in class:BasicFloatObject
57 private static void test(Locale l, String fs, String exp, Object ... args) method in class:BasicFloatObject
64 private static void test(String fs, Object ... args) { method in class:BasicFloatObject
70 private static void test(String fs) { method in class:BasicFloatObject
114 test(fs);
128 test(fs, args);
334 public static void test() { method in class:BasicFloatObject
350 test(Local
[all...]
H A DBasicDouble.java24 /* Type-specific source code for unit test
27 * We check in the generated source files so that the test tree can be used
51 private static void test(String fs, String exp, Object ... args) { method in class:BasicDouble
57 private static void test(Locale l, String fs, String exp, Object ... args) method in class:BasicDouble
64 private static void test(String fs, Object ... args) { method in class:BasicDouble
70 private static void test(String fs) { method in class:BasicDouble
114 test(fs);
128 test(fs, args);
334 public static void test() { method in class:BasicDouble
350 test(Local
[all...]
/openjdk7/jdk/test/java/lang/String/
H A DToUpperCase.java25 @test
43 test("\u00DF", turkish, "SS");
44 test("a\u00DF", turkish, "ASS");
45 test("i", turkish, "\u0130");
46 test("i", az, "\u0130");
47 test("\u0131", turkish, "I");
48 test("\u00DF", Locale.GERMANY, "SS");
49 test("a\u00DF", Locale.GERMANY, "ASS");
50 test("i", Locale.GERMANY, "I");
52 // test som
96 static void test(String in, Locale locale, String expected) { method in class:ToUpperCase
[all...]
H A DToLowerCase.java25 @test
43 test("\u03A3", Locale.US, "\u03C3");
44 test("LAST\u03A3", Locale.US, "last\u03C2");
45 test("MID\u03A3DLE", Locale.US, "mid\u03C3dle");
46 test("WORD1 \u03A3 WORD3", Locale.US, "word1 \u03C3 word3");
47 test("WORD1 LAST\u03A3 WORD3", Locale.US, "word1 last\u03C2 word3");
48 test("WORD1 MID\u03A3DLE WORD3", Locale.US, "word1 mid\u03C3dle word3");
49 test("\u0399\u0395\u03a3\u03a5\u03a3 \u03a7\u03a1\u0399\u03a3\u03a4\u039f\u03a3", Locale.US,
53 test("I", lt, "i");
54 test("
108 static void test(String in, Locale locale, String expected) { method in class:ToLowerCase
[all...]
/openjdk7/langtools/test/tools/javac/4846262/
H A DTest.java3 public void test() { method in class:Test
/openjdk7/langtools/test/tools/javac/generics/bridge1/
H A DA.java25 public A test(); method in interface:A
/openjdk7/langtools/test/tools/javac/generics/inference/5073060/
H A DNegHelper.java24 package test; package
/openjdk7/langtools/test/tools/javac/importContext/anonPackage/bar/
H A DBaz.java27 public static void test() {} method in class:Baz
/openjdk7/langtools/test/tools/javac/importContext/namedPackage/bar/
H A DBaz.java27 public static void test() {} method in class:Baz
/openjdk7/langtools/test/tools/javac/scope/6225935/
H A DBar.java24 package test; package
H A DBaz.java24 package test; package
H A DTest.java25 * @test
32 import static test.Bar.*;
33 import static test.Baz.*;
/openjdk7/langtools/test/tools/javac/literals/
H A DBinaryLiterals.java25 * @test
36 test(0, 0B0);
37 test(1, 0B1);
38 test(2, 0B10);
39 test(3, 0B11);
41 test(0, 0b0);
42 test(1, 0b1);
43 test(2, 0b10);
44 test(3, 0b11);
46 test(
113 void test(int expect, int found) { method in class:BinaryLiterals
119 void test(long expect, long found) { method in class:BinaryLiterals
[all...]
/openjdk7/langtools/test/tools/javac/6330920/
H A DT6330920.java2 * @test /nodynamiccopyright/
10 public void test(T6330920 x) {} method in class:T6330920
11 public void test(T6330920Missing x) {} method in class:T6330920
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestBooleanClassValue.java25 * @test
33 TestEditor test = new TestEditor(Boolean.class);
34 test.testValue(true, "True");
35 test.testValue(null, null);
36 test.testText("False", false);
37 test.testText(null, null);
H A DTestByteClassValue.java25 * @test
33 TestEditor test = new TestEditor(Byte.class);
34 test.testValue((byte) 0, "0");
35 test.testValue(null, null);
36 test.testText("1", (byte) 1);
37 test.testText(null, null);
H A DTestDoubleClassValue.java25 * @test
33 TestEditor test = new TestEditor(Double.class);
34 test.testValue(0.0, "0.0");
35 test.testValue(null, null);
36 test.testText("1.1", 1.1);
37 test.testText(null, null);
H A DTestIntegerClassValue.java25 * @test
33 TestEditor test = new TestEditor(Integer.class);
34 test.testValue(0, "0");
35 test.testValue(null, null);
36 test.testText("1", 1);
37 test.testText(null, null);
H A DTestShortClassValue.java25 * @test
33 TestEditor test = new TestEditor(Short.class);
34 test.testValue((short) 0, "0");
35 test.testValue(null, null);
36 test.testText("1", (short) 1);
37 test.testText(null, null);
H A DTestStringClassValue.java25 * @test
35 TestEditor test = new TestEditor(String.class);
36 test.testValue("string", "string");
37 test.testValue(null, null);
38 test.testText("line", "line");
39 test.testText(null, null);
/openjdk7/jdk/test/java/nio/Buffer/
H A DCopyDirectMemory.java24 /* @test
38 CopyDirectByteMemory.test();
39 CopyDirectCharMemory.test();
40 CopyDirectShortMemory.test();
41 CopyDirectIntMemory.test();
42 CopyDirectLongMemory.test();
43 CopyDirectFloatMemory.test();
44 CopyDirectDoubleMemory.test();

Completed in 40 milliseconds

1234567891011>>