Lines Matching refs:str

300     String str = (String) mh.invoke(new BarImpl());  in testfindVirtual()  local
301 if (!"privateMethod".equals(str)) { in testfindVirtual()
302 System.out.println("Unexpected return value for BarImpl#privateMethod: " + str); in testfindVirtual()
309 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
310 if (!"foo".equals(str)) { in testfindVirtual()
311 System.out.println("Unexpected return value for BarImpl#foo: " + str); in testfindVirtual()
332 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
333 if (!"bar".equals(str)) { in testfindVirtual()
334 System.out.println("Unexpected return value for BarImpl#bar: " + str); in testfindVirtual()
339 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
340 if (!"bar".equals(str)) { in testfindVirtual()
341 System.out.println("Unexpected return value for BarImpl#bar: " + str); in testfindVirtual()
346 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
347 if (!"abstractSuperPublicMethod".equals(str)) { in testfindVirtual()
348 System.out.println("Unexpected return value for BarImpl#abstractSuperPublicMethod: " + str); in testfindVirtual()
355 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
356 if (!"superPublicMethod".equals(str)) { in testfindVirtual()
357 System.out.println("Unexpected return value for BarImpl#superPublicMethod: " + str); in testfindVirtual()
362 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
363 if (!"superProtectedMethod".equals(str)) { in testfindVirtual()
364 System.out.println("Unexpected return value for BarImpl#superProtectedMethod: " + str); in testfindVirtual()
369 str = (String) mh.invoke(new BarImpl()); in testfindVirtual()
370 if (!"superPackageMethod".equals(str)) { in testfindVirtual()
371 System.out.println("Unexpected return value for BarImpl#superPackageMethod: " + str); in testfindVirtual()
616 String str = (String) asType.invokeExact((CharSequence) getSequence(), "bar"); in testAsType() local
623 String str = (String) asType.invokeExact("baz", "bar"); in testAsType() local