Lines Matching defs:called
133 public static Object called(String name, Object... args) {
365 protected Example(int x) { this(); called("protected <init>", this, x); }
368 public void v0() { called("v0", this); }
369 protected void pro_v0() { called("pro_v0", this); }
370 void pkg_v0() { called("pkg_v0", this); }
371 private void pri_v0() { called("pri_v0", this); }
372 public static void s0() { called("s0"); }
373 protected static void pro_s0() { called("pro_s0"); }
374 static void pkg_s0() { called("pkg_s0"); }
375 private static void pri_s0() { called("pri_s0"); }
377 public Object v1(Object x) { return called("v1", this, x); }
378 public Object v2(Object x, Object y) { return called("v2", this, x, y); }
379 public Object v2(Object x, int y) { return called("v2", this, x, y); }
380 public Object v2(int x, Object y) { return called("v2", this, x, y); }
381 public Object v2(int x, int y) { return called("v2", this, x, y); }
382 public static Object s1(Object x) { return called("s1", x); }
383 public static Object s2(int x) { return called("s2", x); }
384 public static Object s3(long x) { return called("s3", x); }
385 public static Object s4(int x, int y) { return called("s4", x, y); }
386 public static Object s5(long x, int y) { return called("s5", x, y); }
387 public static Object s6(int x, long y) { return called("s6", x, y); }
388 public static Object s7(float x, double y) { return called("s7", x, y); }
391 public Example(String x, int y) { this.name = x+y; called("Example.<init>", x, y); }
392 public Example(int x, String y) { this.name = x+y; called("Example.<init>", x, y); }
393 public Example(int x, int y) { this.name = x+""+y; called("Example.<init>", x, y); }
394 public Example(int x, long y) { this.name = x+""+y; called("Example.<init>", x, y); }
395 public Example(int x, float y) { this.name = x+""+y; called("Example.<init>", x, y); }
396 public Example(int x, double y) { this.name = x+""+y; called("Example.<init>", x, y); }
397 public Example(int x, int y, int z) { this.name = x+""+y+""+z; called("Example.<init>", x, y, z); }
398 public Example(int x, int y, int z, int a) { this.name = x+""+y+""+z+""+a; called("Example.<init>", x, y, z, a); }
406 protected void pro_v0() { called("Pub/pro_v0", this); }
407 protected static void pro_s0() { called("Pub/pro_s0"); }
410 @Override public void v0() { called("Sub/v0", this); }
411 @Override void pkg_v0() { called("Sub/pkg_v0", this); }
413 private SubExample(int x) { called("<init>", this, x); }
419 public void v0() { called("Int/v0", this); }
1413 static Object id() { return called("id"); }
1414 static Object id(Object x) { return called("id", x); }
1415 static Object id(Object x, Object y) { return called("id", x, y); }
1416 static Object id(Object x, Object y, Object z) { return called("id", x, y, z); }
1417 static Object id(Object... vx) { return called("id", vx); }
1510 MethodHandle vac0 = PRIVATE.findStatic(MethodHandlesTest.class, "called",
2144 return called("invokee", args).hashCode();
2150 return called("targetIfEquals");
2153 return called("fallbackIfNotEquals");
2157 return called("targetIfEquals", x);
2161 return called("fallbackIfNotEquals", x);
2165 return called("targetIfEquals", x, y);
2169 return called("fallbackIfNotEquals", x, y);
2173 return called("targetIfEquals", x, y, z);
2177 return called("fallbackIfNotEquals", x, y, z);
2279 called("throwOrReturn/throw", normal, exception);
2282 called("throwOrReturn/normal", normal, exception);
2589 called("userMethod", o, s, i);
2623 called("runForRunnable");
2632 return called("fooForFooable/"+x, y);