Home
last modified time | relevance | path

Searched defs:Example (Results 1 – 1 of 1) sorted by relevance

/libcore/ojluni/src/test/java/lang/invoke/
DMethodHandlesTest.java411 static class Example implements IntExample { class in MethodHandlesTest
413 public Example() { name = "Example#"+nextArg(); } in Example() method in MethodHandlesTest.Example
414 protected Example(String name) { this.name = name; } in Example() method in MethodHandlesTest.Example
416 protected Example(int x) { this(); called("protected <init>", this, x); } in Example() method in MethodHandlesTest.Example
443 public Example(String x, int y) { this.name = x+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
444 public Example(int x, String y) { this.name = x+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
445 public Example(int x, int y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
446 public Example(int x, long y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
447 public Example(int x, float y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
448 public Example(int x, double y) { this.name = x+""+y; called("Example.<init>", x, y); } in Example() method in MethodHandlesTest.Example
[all …]