Lines Matching refs:m
384 Method m = A.class.getMethod("m", int.class, String.class); in reflection() local
385 m.invoke(new A(), 2, 2); in reflection()
393 Method m = A.class.getMethod("m", int.class, String.class); in reflection() local
394 m.invoke(new A(), null, ""); in reflection()
401 Method m = String.class.getMethod("charAt", int.class); in reflection() local
402 m.invoke("hello"); // Wrong number of arguments. in reflection()
408 Method m = String.class.getMethod("charAt", int.class); in reflection() local
409 m.invoke("hello", "world"); // Wrong type. in reflection()
415 Method m = String.class.getMethod("charAt", int.class); in reflection() local
416 m.invoke("hello", (Object) null); // Null for a primitive argument. in reflection()
422 Method m = String.class.getMethod("charAt", int.class); in reflection() local
423 m.invoke(new Integer(5)); // Wrong type for 'this'. in reflection()
429 Method m = String.class.getMethod("charAt", int.class); in reflection() local
430 m.invoke(null); // Null for 'this'. in reflection()
467 public void m(int i, String s) {} in m() method in A