OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Thrower
(Results
1 - 3
of
3
) sorted by null
/libcore/luni/src/test/java/libcore/java/lang/reflect/
GenericExceptionsTest.java
31
Method method =
Thrower
.class.getMethod("parameterizedMethod");
37
Method method =
Thrower
.class.getMethod("genericParameters", List.class);
43
Constructor constructor =
Thrower
.class.getConstructor();
49
Constructor constructor =
Thrower
.class.getConstructor(List.class);
99
static class
Thrower
{
100
public <T>
Thrower
() throws IOException {}
101
public
Thrower
(List<?> unused) throws IOException {}
/external/guice/core/test/com/google/inject/
TypeLiteralTypeResolutionTest.java
59
getClass(),
Thrower
.class, NullPointerException.class);
71
Constructor<
Thrower
> newThrower;
86
newThrower =
Thrower
.class.getConstructor();
93
throwS =
Thrower
.class.getMethod("throwS");
158
static class
Thrower
<S extends Exception> {
159
public
Thrower
() throws S {}
/art/test/046-reflect/src/
Main.java
382
Thrower
thrower
=
Thrower
.class.newInstance();
local
392
Constructor<
Thrower
> constructor =
Thrower
.class.getDeclaredConstructor();
393
Thrower
thrower
= constructor.newInstance();
local
859
class
Thrower
{
860
public
Thrower
() throws UnsupportedOperationException {
Completed in 89 milliseconds