Home
last modified time | relevance | path

Searched refs:ProxyFactory (Results 1 – 14 of 14) sorted by relevance

/external/javassist/src/test/test/javassist/proxy/
DProxySimpleTest.java12 import javassist.util.proxy.ProxyFactory;
17 ProxyFactory.ClassLoaderProvider cp = ProxyFactory.classLoaderProvider; in testReadWrite()
18 ProxyFactory.classLoaderProvider = new ProxyFactory.ClassLoaderProvider() { in testReadWrite()
19 public ClassLoader get(ProxyFactory pf) { in testReadWrite()
23 ProxyFactory pf = new ProxyFactory(); in testReadWrite()
30 ProxyFactory.classLoaderProvider = cp; in testReadWrite()
44 ProxyFactory pf = new ProxyFactory(); in testWriteReplace()
49 ProxyFactory pf2 = new ProxyFactory(); in testWriteReplace()
DProxyFactoryCompatibilityTest.java6 import javassist.util.proxy.ProxyFactory;
44 System.out.println("ProxyFactory.useCache = " + ProxyFactory.useCache); in testFactoryCompatibility()
46 ProxyFactory factory = new ProxyFactory(); in testFactoryCompatibility()
70 ProxyFactory factory2 = new ProxyFactory(); in testFactoryCompatibility()
DJASSIST113RegressionTest.java3 import javassist.util.proxy.ProxyFactory;
18 ProxyFactory proxyFactory = new ProxyFactory(); in testProxyFactoryWithNonPublicInterface()
DProxyCacheGCTest.java6 import javassist.util.proxy.ProxyFactory;
42 ProxyFactory.useCache = false; in testCacheGC()
53 ProxyFactory.useCache = true; in testCacheGC()
91 ProxyFactory factory = new ProxyFactory(); in createProxy()
DProxySerializationTest.java20 ProxyFactory factory = new ProxyFactory(); in testSerialization()
/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java51 ProxyFactory<Simple> factory = new ProxyFactory<Simple>(injectionPoint, aspects); in testSimpleCase()
85 = new ProxyFactory<Foo>(InjectionPoint.forConstructorOf(Foo.class), aspects).create(); in testInterceptOneMethod()
87 = new ProxyFactory<Bar>(InjectionPoint.forConstructorOf(Bar.class), aspects).create(); in testInterceptOneMethod()
136 ProxyFactory<A> factory in testWithConstructorArguments()
137 = new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testWithConstructorArguments()
151 ProxyFactory<A> factory in testNotProxied()
152 = new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testNotProxied()
174 ProxyFactory<Counter> factory in testMultipleInterceptors()
175 = new ProxyFactory<Counter>(InjectionPoint.forConstructorOf(Counter.class), aspects); in testMultipleInterceptors()
/external/javassist/src/main/javassist/util/proxy/
DProxyObjectOutputStream.java48 if (ProxyFactory.isProxyClass(cl)) { in writeClassDescriptor()
52 byte[] signature = ProxyFactory.getFilterSignature(cl); in writeClassDescriptor()
DProxyObjectInputStream.java79 ProxyFactory factory = new ProxyFactory(); in readClassDescriptor()
DSerializedProxy.java80 ProxyFactory f = new ProxyFactory();
DProxyFactory.java152 public class ProxyFactory { class
333 public ProxyFactory() { in ProxyFactory() method in ProxyFactory
556 public ClassLoader get(ProxyFactory pf); in get()
581 public ClassLoader get(ProxyFactory pf) {
DRuntimeSupport.java209 return new SerializedProxy(clazz, ProxyFactory.getFilterSignature(clazz), methodHandler); in makeSerializedProxy()
/external/guice/core/src/com/google/inject/internal/
DProxyFactory.java51 final class ProxyFactory<T> implements ConstructionProxyFactory<T> { class
53 private static final Logger logger = Logger.getLogger(ProxyFactory.class.getName());
67 ProxyFactory(InjectionPoint injectionPoint, Iterable<MethodAspect> methodAspects) { in ProxyFactory() method in ProxyFactory
DConstructorInjectorStore.java82 ConstructionProxyFactory<T> factory = new ProxyFactory<T>(injectionPoint, methodAspects); in createConstructor()
/external/guice/
DAndroid.mk36 core/src/com/google/inject/internal/ProxyFactory.java