Searched refs:test (Results 101 - 125 of 6293) sorted by relevance

1234567891011>>

/openjdk9/langtools/test/tools/javac/generics/bridge1/
H A DE.java25 public abstract E test(); method in class:E
/openjdk9/jdk/test/jdk/modules/scenarios/overlappingpackages/src/test/test/
H A DMain.java24 package test; package
/openjdk9/nashorn/test/script/basic/
H A DJDK-8030202.js27 * @test
31 print(/\u2160/i.test("\u2170"));
32 print(/[\u2160]/i.test("\u2170"));
33 print(/\u2170/i.test("\u2160"));
34 print(/[\u2170]/i.test("\u2160"));
36 print(/\u0130/i.test("\u0069"));
37 print(/[\u0130]/i.test("\u0069"));
38 print(/\u0069/i.test("\u0130"));
39 print(/[\u0069]/i.test("\u0130"));
41 print(/\u1e9e/i.test("\u00d
[all...]
/openjdk9/jdk/test/tools/jlink/plugins/
H A DSignatureParserTest.java25 * @test
43 new SignatureParserTest().test();
46 private void test() { method in class:SignatureParserTest
47 test("[Ljava/lang/String;", "[L;", "java/lang/String");
48 test("[[[[[[[[[[Ljava/lang/String;", "[[[[[[[[[[L;", "java/lang/String");
49 test("<T:Ljava/lang/Object;:Ljava/lang/Comparable<-TT;>;>" +
55 test("(Ljava/lang/String;ZLjava/util/EventListener;TTK;)V",
58 test("<Y:Ljava/lang/String;>", "<Y:L;>", "java/lang/String");
59 test("<Y:Ljava/lang/String;Z::Ljava/util/EventListener;>",
62 test("<
184 private void test(String type, String formatted, String...classNames) { method in class:SignatureParserTest
[all...]
/openjdk9/jdk/test/sun/nio/cs/
H A DSJISCanEncode.java24 /* @test
50 SJISCanEncode test = new SJISCanEncode();
51 test.cs = Charset.forName("SJIS");
52 test.encoder = test.cs.newEncoder();
55 test.canEncodeTest('\u0001', true);
58 test.canEncodeTest('\uFF01', true);
61 test.canEncodeTest('\u4E9C', true);
64 test.canEncodeTest('\u3041', true);
66 test
[all...]
/openjdk9/jdk/test/java/lang/StackWalker/CallerSensitiveMethod/csm/
H A Dmodule-info.java25 exports jdk.test;
/openjdk9/langtools/test/jdk/javadoc/doclet/testModules/test.moduleFullName/
H A Dmodule-info.java27 * This is a test description for the test.moduleFullName.
30 module test.moduleFullName {
/openjdk9/langtools/test/tools/javac/annotations/6365854/
H A DTestAnnotation.java24 package test.annotation;
29 int test(); method in interface:TestAnnotation
/openjdk9/jdk/test/tools/jar/modularJar/src/foobar/
H A Dmodule-info.java25 exports jdk.test.foo;
26 exports jdk.test.bar;
27 opens jdk.test.foo;
28 opens jdk.test.bar;
/openjdk9/jdk/test/tools/launcher/modules/limitmods/src/test/
H A Dmodule-info.java24 module test {
/openjdk9/jdk/test/sun/tools/jstatd/
H A DTestJstatdDefaults.java25 * @test
37 JstatdTest test = new JstatdTest();
38 test.doTest();
/openjdk9/jdk/test/tools/launcher/modules/upgrademodulepath/src/test/
H A Dmodule-info.java24 module test {
/openjdk9/langtools/test/tools/javac/generics/inference/5073060/
H A DNeg.java2 * @test /nodynamiccopyright/
9 public class Neg<T extends test.NegHelper & Cloneable> {
10 void test(T t) { t.foo(); } method in class:Neg
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DBoxingTest.java23 package org.graalvm.compiler.core.test;
35 test("boxSnippet", 0);
40 test("boxSnippet", 5);
45 test("boxSnippet", -5);
50 test("boxSnippet", 300);
55 test("boxSnippet", -300);
/openjdk9/hotspot/test/gc/survivorAlignment/
H A DTestPromotionToSurvivor.java25 * @test
29 * @library /test/lib
74 SurvivorAlignmentTestMain test
76 System.out.println(test);
78 long expectedUsage = test.getExpectedMemoryUsage();
79 test.baselineMemoryAllocation();
82 test.allocate();
85 test.verifyMemoryUsage(expectedUsage);
H A DTestAllocationInEden.java25 * @test
29 * @library /test/lib
80 SurvivorAlignmentTestMain test
82 System.out.println(test);
84 long expectedMemoryUsage = test.getExpectedMemoryUsage();
85 test.baselineMemoryAllocation();
88 test.allocate();
90 test.verifyMemoryUsage(expectedMemoryUsage);
/openjdk9/langtools/test/tools/javac/
H A DInnerMemberRegression.java25 * @test
28 * That is bad. This text is part of the test for yet another bug
36 void test() { method in class:InnerMemberRegression
39 void test() {
45 void test() {
46 y.test();
50 z.test();
55 x.test();
/openjdk9/jdk/test/java/util/ResourceBundle/modules/appbasic/src/eubundles/
H A Dmodule-info.java25 requires test;
27 provides jdk.test.resources.spi.MyResourcesProvider
28 with jdk.test.resources.eu.MyResourcesEU;
/openjdk9/jdk/test/java/util/logging/modules/LogManagerInModule/test.handlers/
H A Dmodule-info.java24 module test.handlers {
26 // makes it possible for java.logging and test.config to instantiate
27 // test.handlers.TestHandler;
30 exports test.handlers to java.logging, test.config;
/openjdk9/jdk/test/java/util/logging/modules/LogManagerInModule/test.config/
H A Dmodule-info.java24 module test.config {
26 requires test.handlers;
27 // makes it possible for java.logging to instantiate test.config.LogConfig;
30 exports test.config to java.logging;
/openjdk9/jdk/test/java/util/ResourceBundle/modules/appbasic2/src/asiabundles/
H A Dmodule-info.java25 requires test;
27 provides jdk.test.resources.spi.MyResourcesProvider
28 with jdk.test.resources.asia.MyResourcesAsia;
/openjdk9/jdk/test/java/util/ResourceBundle/modules/appbasic2/src/eubundles/
H A Dmodule-info.java25 requires test;
27 provides jdk.test.resources.spi.MyResourcesProvider
28 with jdk.test.resources.eu.MyResourcesEU;
/openjdk9/jdk/test/java/util/ResourceBundle/modules/appbasic/src/asiabundles/
H A Dmodule-info.java25 requires test;
27 provides jdk.test.resources.spi.MyResourcesProvider
28 with jdk.test.resources.asia.MyResourcesAsia;
/openjdk9/jdk/test/javax/smartcardio/
H A DTestCardPermission.java25 * @test
38 test("*");
39 test("connect");
40 test("reset");
41 test("exclusive");
42 test("transmitControl");
43 test("getBasicChannel");
44 test("openLogicalChannel");
46 test("connect,reset");
47 test("Rese
69 private static void test(String actions) throws Exception { method in class:TestCardPermission
73 private static void test(String actions, String canon) throws Exception { method in class:TestCardPermission
[all...]
/openjdk9/jdk/test/java/lang/String/concat/
H A DImplicitStringConcatBoundaries.java25 * @test
147 test("foofalse", "foo" + BOOL_FALSE_1);
148 test("foofalse", "foo" + BOOL_FALSE_2);
149 test("footrue", "foo" + BOOL_TRUE_1);
150 test("footrue", "foo" + BOOL_TRUE_2);
152 test("foo127", "foo" + BYTE_MAX_1);
153 test("foo127", "foo" + BYTE_MAX_2);
154 test("foo-128", "foo" + BYTE_MIN_1);
155 test("foo-128", "foo" + BYTE_MIN_2);
157 test("foo3276
196 public static void test(String expected, String actual) { method in class:ImplicitStringConcatBoundaries
[all...]

Completed in 1100 milliseconds

1234567891011>>