Searched refs:toTest (Results 1 - 10 of 10) sorted by relevance

/openjdk10/jdk/test/java/lang/annotation/typeAnnotations/
H A DGetAnnotatedSuperclass.java65 for (Class<?> toTest : nullTestData) {
68 Object res = toTest.getAnnotatedSuperclass();
72 System.out.println(toTest + ".getAnnotatedSuperclass() returns: "
79 for (Class<?> toTest : nonNullTestData) {
82 AnnotatedType res = toTest.getAnnotatedSuperclass();
86 System.out.println(toTest + ".getAnnotatedSuperclass() returns 'null' should be non-null");
89 System.out.println(toTest + ".getAnnotatedSuperclass() returns: "
H A DGetAnnotatedInterfaces.java60 for (Class<?> toTest : testData) {
63 AnnotatedType[] res = toTest.getAnnotatedInterfaces();
67 System.out.println(toTest + ".class.getAnnotatedInterface() returns" +
71 System.out.println(toTest + ".class.getAnnotatedInterfaces() returns: "
H A DConstructorReceiverTest.java72 public void testAnnotatedReciver(Class<?> toTest, Class<?> ctorParamType, argument
76 c = toTest.getDeclaredConstructor();
78 c = toTest.getDeclaredConstructor(ctorParamType);
110 public void testAnnotatedReturn(Class<?> toTest, Class<?> ctorParamType, argument
114 c = toTest.getDeclaredConstructor();
116 c = toTest.getDeclaredConstructor(ctorParamType);
/openjdk10/jdk/test/java/lang/reflect/DefaultStaticTest/
H A DDefaultStaticInvokeTest.java135 for (MethodDesc toTest : expectedMethods) {
136 String name = toTest.name();
138 testThisMethod(toTest, m, typeUnderTest, param);
151 for (MethodDesc toTest : expectedMethods) {
152 String mName = toTest.name();
153 Mod mod = toTest.mod();
159 String expectedReturn = toTest.retval();
186 for (MethodDesc toTest : expectedMethods) {
187 String mName = toTest.name();
188 Mod mod = toTest
275 testThisMethod(MethodDesc toTest, Method method, Class<?> typeUnderTest, Object param) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DDefaultKeyboardFocusManager.java1156 Set<AWTKeyStroke> toTest;
1159 toTest = focusedComponent.getFocusTraversalKeys(
1161 contains = toTest.contains(stroke);
1162 containsOpp = toTest.contains(oppStroke);
1175 toTest = focusedComponent.getFocusTraversalKeys(
1177 contains = toTest.contains(stroke);
1178 containsOpp = toTest.contains(oppStroke);
1188 toTest = focusedComponent.getFocusTraversalKeys(
1190 contains = toTest.contains(stroke);
1191 containsOpp = toTest
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/
H A DEmbeddedFrame.java221 Set<AWTKeyStroke> toTest;
224 toTest = getFocusTraversalKeys(KeyboardFocusManager.FORWARD_TRAVERSAL_KEYS);
225 if (toTest.contains(stroke)) {
236 toTest = getFocusTraversalKeys(KeyboardFocusManager.BACKWARD_TRAVERSAL_KEYS);
237 if (toTest.contains(stroke)) {
/openjdk10/jdk/test/java/net/NetworkInterface/
H A DGetMacAddress.java104 List<NetworkInterface> toTest = getNetworkInterfacesAsStream()
110 for (NetworkInterface ni : toTest) {
/openjdk10/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java131 Frame toTest = (Frame)windows[windowInd];
133 // toTest.setExtendedState(Frame.ICONIFIED);
135 // toTest.setExtendedState(Frame.NORMAL);
137 toTest.setExtendedState(Frame.MAXIMIZED_BOTH);
139 toTest.setExtendedState(Frame.NORMAL);
/openjdk10/jdk/src/java.desktop/windows/native/libawt/windows/
H A Dawt_Window.cpp2331 HWND toTest = hwnd; local
2334 adjustForegroundWindow = (toTest == foregroundWindow);
2339 toTest = ::GetWindow(toTest, GW_OWNER);
2341 while (toTest != NULL);
/openjdk10/langtools/test/jdk/jshell/
H A DKullaTesting.java470 private List<SnippetEvent> checkEvents(Supplier<List<SnippetEvent>> toTest, argument
481 List<SnippetEvent> events = toTest.get();

Completed in 124 milliseconds