OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:invocationHandler
(Results
1 - 6
of
6
) sorted by null
/external/dexmaker/src/mockito/java/com/google/dexmaker/mockito/
DexmakerMockMaker.java
21
import java.lang.reflect.
InvocationHandler
;
41
InvocationHandler
invocationHandler
= new InvocationHandlerAdapter(handler);
51
invocationHandler
);
63
handlerField.set(mock,
invocationHandler
);
85
InvocationHandler
invocationHandler
= Proxy.getInvocationHandler(mock);
86
return
invocationHandler
instanceof InvocationHandlerAdapter
87
? (InvocationHandlerAdapter)
invocationHandler
92
InvocationHandler
invocationHandler = ProxyBuilder.getInvocationHandler(mock)
[
all
...]
/libcore/support/src/test/java/tests/io/
MockOs.java
19
import java.lang.reflect.
InvocationHandler
;
37
private final InheritableThreadLocal<Map<String, Deque<
InvocationHandler
>>> handlers
38
= new InheritableThreadLocal<Map<String, Deque<
InvocationHandler
>>>() {
39
@Override protected Map<String, Deque<
InvocationHandler
>> initialValue() {
40
return new HashMap<String, Deque<
InvocationHandler
>>();
45
private final
InvocationHandler
delegateHandler = new
InvocationHandler
() {
55
private final
InvocationHandler
invocationHandler
= new
InvocationHandler
() {
[
all
...]
/libcore/libart/src/main/java/java/lang/reflect/
Proxy.java
34
* invocations to an {@code
InvocationHandler
}.
36
* @see
InvocationHandler
71
protected
InvocationHandler
h;
84
protected Proxy(
InvocationHandler
h) {
196
* @param
invocationHandler
206
InvocationHandler
invocationHandler
)
209
if (
invocationHandler
== null) {
210
throw new NullPointerException("
invocationHandler
== null");
215
.getConstructor(
InvocationHandler
.class
[
all
...]
/external/littlemock/src/com/google/testing/littlemock/
LittleMock.java
23
import java.lang.reflect.
InvocationHandler
;
586
private static class DefaultInvocationHandler implements
InvocationHandler
{
684
return createProxy(clazz, new
InvocationHandler
() {
706
return createProxy(clazz, new
InvocationHandler
() {
[
all
...]
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
ProxyBuilderTest.java
22
import java.lang.reflect.
InvocationHandler
;
221
public static class InvokeSuperHandler implements
InvocationHandler
{
287
InvocationHandler
handler = new
InvocationHandler
() {
364
InvocationHandler
delegatesOddValues = new
InvocationHandler
() {
385
InvocationHandler
handler = new
InvocationHandler
() {
644
InvocationHandler
invocationHandler
= new InvocationHandler()
[
all
...]
/external/guava/guava-tests/test/com/google/common/collect/
ImmutableListTest.java
49
import java.lang.reflect.
InvocationHandler
;
555
InvocationHandler
invocationHandler
= new
InvocationHandler
() {
603
new Class[] {ConcurrentlyMutatedList.class},
invocationHandler
);
Completed in 350 milliseconds