Searched refs:foo (Results 1 - 25 of 36) sorted by relevance

12

/libcore/support/src/test/java/tests/resources/
H A Dhyts_Bar.ser ... Bar.java package foo.bar.execjartest foo.bar.execjartest.Bar extends java.lang ...
H A Dhyts_Foo.serFoo.java package foo.bar.execjartest public foo.bar.execjartest.Foo extends java.lang ...
H A Dhyts_mainClass.ser ... MainClass.java package foo.bar.execjartest public foo.bar.execjartest.MainClass extends java.lang ...
H A Dhyts_patch.jar ... INF/ META-INF/MANIFEST.MF Blah.txt foo/ foo/bar/ foo/bar/A.class A.java ...
H A Dhyts_patch2.jar ... Blah.txt foo/ foo/bar/ foo/bar/A.class A.java package foo.bar public foo. ...
/libcore/support/src/test/java/tests/resources/morestuff/
H A Dhyts_patch.jar ... INF/ META-INF/MANIFEST.MF Blah.txt foo/ foo/bar/ foo/bar/A.class A.java ...
H A Dhyts_patch2.jar ... Blah.txt foo/ foo/bar/ foo/bar/A.class A.java package foo.bar public foo. ...
/libcore/support/src/test/java/tests/support/
H A DSupport_Proxy_I2.java24 void foo(boolean b, int i); method in interface:Support_Proxy_I2
H A DSupport_Proxy_I1.java25 void foo(int i, boolean b); method in interface:Support_Proxy_I1
/libcore/support/src/test/java/tests/resources/JarIndex/
H A Dhyts_11.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_12.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_21.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_22-new.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_22.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_31.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_32.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_41.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
H A Dhyts_42.jar ... static void main (java.lang.String[]) public void foo () public void " href="/7.1.1_r6/s? ...
/libcore/luni/src/test/java/libcore/xml/
H A DDomSerializationTest.java43 Element foo = document.createElement("foo");
46 foo.setAttributeNode(quux);
47 foo.appendChild(document.createElement("bar"));
48 foo.appendChild(document.createElement("baz"));
49 document.appendChild(foo);
50 assertXmlEquals("<foo quux=\"abc\"><bar/><baz/></foo>", document);
55 Element foo = document.createElement("foo");
[all...]
/libcore/luni/src/test/java/libcore/java/util/
H A DOptionalTest.java52 String foo = "foo";
53 Optional<String> optionalFoo = Optional.of(foo);
54 assertSame(foo, optionalFoo.get());
61 Optional<String> optionalFoo = Optional.of("foo");
79 String foo = "foo";
80 Optional.of(foo).ifPresent(s -> reference.set(s));
81 assertSame(foo, reference.get());
95 final String foo
[all...]
/libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/lang/invoke/
H A DDeserializeMethodTest.java58 void foo() { method in class:DeserializeMethodTest.Cap1
68 void foo() { method in class:DeserializeMethodTest.Cap2
79 void foo() { method in class:DeserializeMethodTest.Cap3
/libcore/luni/src/test/java/libcore/java/lang/
H A DClassTest.java30 public void foo(); method in interface:ClassTest.Foo
34 public void foo(T param); method in interface:ClassTest.ParameterizedFoo
109 void foo(); method in interface:ClassTest.C
112 void foo(); method in interface:ClassTest.D
118 assertEquals(Z.class.getMethod("foo"), D.class.getMethod("foo"));
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldLogManagerTest.java96 Logger foo = mockManager.getLogger(FOO);
97 assertNull("Logger should be null", foo);
99 foo = mockManager.getLogger(FOO);
100 assertSame("two loggers not refer to the same object", foo, log);
101 assertNull("logger foo should not haven parent", foo.getParent());
153 Logger foo = new MockLogger("testGetLogger_hierachy.foo", null);
154 // but for non-mock LogManager, foo's parent should be root
155 assertTrue(manager.addLogger(foo));
[all...]
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DAnnotationsTest.java162 Foo foo = new Foo("string");
163 assertEquals(Foo.class, foo.c.getEnclosingClass());
165 foo.c.getEnclosingConstructor());
166 assertNull(foo.c.getEnclosingMethod());
167 assertNull(foo.c.getDeclaringClass());
171 Foo foo = new Foo();
172 foo.foo("string");
173 assertEquals(Foo.class, foo.c.getEnclosingClass());
174 assertNull(foo
319 private void foo(String s) { method in class:AnnotationsTest.Foo
322 private void foo(int i) { method in class:AnnotationsTest.Foo
426 public void foo() throws IOException, InvocationTargetException, IllegalStateException {} method in class:AnnotationsTest.HasThrows
427 public void foo(Void v) {} method in class:AnnotationsTest.HasThrows
431 void foo() throws IOException, InvocationTargetException, IllegalStateException; method in interface:AnnotationsTest.ThrowsInterface
432 void foo(Void v); method in interface:AnnotationsTest.ThrowsInterface
[all...]
H A DProxyTest.java66 assertEquals("foo", proxy.getClass().getMethod("echo", String.class).invoke(proxy, "foo"));
240 assertEquals("foo", instance.a("foo"));
273 return "foo";
277 assertEquals("foo", instance.toString());
289 assertEquals(true, returnsObject.foo());
302 returnsString.foo();
322 int foo(); method in interface:ProxyTest.ReturnsInt
326 float foo(); method in interface:ProxyTest.ReturnsFloat
330 Integer foo(); method in interface:ProxyTest.ReturnsInteger
334 String foo(); method in interface:ProxyTest.ReturnsString
338 CharSequence foo(); method in interface:ProxyTest.ReturnsCharSequence
342 CharSequence foo(); method in interface:ProxyTest.ReturnsSerializable
346 CharSequence foo(); method in interface:ProxyTest.ReturnsComparable
350 Object foo(); method in interface:ProxyTest.ReturnsObject
354 void foo(); method in interface:ProxyTest.ReturnsVoid
358 Echo foo(); method in interface:ProxyTest.ReturnsEcho
[all...]

Completed in 553 milliseconds

12