Searched refs:testMethod (Results 1 - 14 of 14) sorted by relevance

/openjdk7/langtools/test/tools/javac/generics/inference/6569789/
H A DT6569789.java40 testMethod(ct);
43 static <W extends C & I & I1 & I2, T extends W> void testMethod(T t) {} method in class:T6569789
/openjdk7/jdk/test/java/util/logging/bundlesearch/
H A DLoadItUp2Invoker.java40 private Method testMethod; field in class:LoadItUp2Invoker
50 this.testMethod = loadItUp2Clazz.getMethod("test", String.class);
55 return (Boolean) testMethod.invoke(loadItUp2, rbName);
H A DTwiceIndirectlyLoadABundle.java84 Method testMethod = loadItUp2InvokerClazz.getMethod("test");
86 return (Boolean) testMethod.invoke(loadItUp2Invoker);
H A DIndirectlyLoadABundle.java65 Method testMethod = loadItUpClazz.getMethod("getLogger", String.class, String.class);
67 return (Logger)testMethod.invoke(loadItUp, "NestedLogger1", rbName) != null;
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos05.java83 Method testMethod = null;
86 testMethod = m;
90 if (testMethod == null) {
93 Code_attribute ea = (Code_attribute)testMethod.attributes.get(Attribute.Code);
94 if (testMethod == null) {
/openjdk7/langtools/test/tools/javac/multicatch/7005371/
H A DT7005371.java63 Method testMethod = null;
66 testMethod = m;
70 if (testMethod == null) {
73 Code_attribute code = (Code_attribute)testMethod.attributes.get(Attribute.Code);
/openjdk7/langtools/test/tools/javac/meth/
H A DTestCP.java72 Method testMethod = null;
75 testMethod = m;
79 if (testMethod == null) {
82 Code_attribute ea = (Code_attribute)testMethod.attributes.get(Attribute.Code);
83 if (testMethod == null) {
/openjdk7/jdk/test/sun/util/resources/TimeZone/
H A DIntlTest.java107 Method testMethod = (Method)testsToRun.elementAt(i);
108 writeTestName(testMethod.getName());
111 testMethod.invoke(this, new Object[0]);
114 errln("Can't acces test method " + testMethod.getName());
118 + testMethod.getName());
/openjdk7/jdk/test/java/util/Locale/
H A DLocaleTestFmwk.java144 Method testMethod = (Method)testsToRun.elementAt(i);
145 writeTestName(testMethod.getName());
148 testMethod.invoke(this, new Object[0]);
151 errln("Can't acces test method " + testMethod.getName());
155 + testMethod.getName());
/openjdk7/jdk/test/java/util/ResourceBundle/
H A DRBTestFmwk.java139 Method testMethod = (Method)testsToRun.elementAt(i);
140 writeTestName(testMethod.getName());
143 testMethod.invoke(this, new Object[0]);
146 errln("Can't acces test method " + testMethod.getName());
151 + testMethod.getName());
/openjdk7/langtools/test/tools/javac/generics/6227936/
H A DOrig.java48 public void testMethod() { method in class:GenericTest.A1
/openjdk7/langtools/test/tools/javac/varargs/6199075/
H A DT6199075.java212 Method testMethod = null;
215 testMethod = m;
219 if (testMethod == null) {
222 Code_attribute ea = (Code_attribute)testMethod.attributes.get(Attribute.Code);
223 if (testMethod == null) {
/openjdk7/langtools/test/tools/javac/varargs/7042566/
H A DT7042566.java111 Method testMethod = null;
114 testMethod = m;
118 if (testMethod == null) {
121 Code_attribute ea = (Code_attribute)testMethod.attributes.get(Attribute.Code);
122 if (testMethod == null) {
/openjdk7/jdk/test/com/sun/jdi/
H A DFetchLocals.java17 public long testMethod() { method in class:FetchLocalsDebugee
77 long result = my.testMethod();
78 System.out.print ("testMethod() returned: ");
244 * Test values in the local method testMethod ():
355 * Get to the bottom of testMethod():

Completed in 1131 milliseconds