Searched refs:ProxyFactory (Results 1 – 14 of 14) sorted by relevance
/external/javassist/src/test/test/javassist/proxy/ |
D | ProxySimpleTest.java | 12 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()
|
D | ProxyFactoryCompatibilityTest.java | 6 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()
|
D | JASSIST113RegressionTest.java | 3 import javassist.util.proxy.ProxyFactory; 18 ProxyFactory proxyFactory = new ProxyFactory(); in testProxyFactoryWithNonPublicInterface()
|
D | ProxyCacheGCTest.java | 6 import javassist.util.proxy.ProxyFactory; 42 ProxyFactory.useCache = false; in testCacheGC() 53 ProxyFactory.useCache = true; in testCacheGC() 91 ProxyFactory factory = new ProxyFactory(); in createProxy()
|
D | ProxySerializationTest.java | 20 ProxyFactory factory = new ProxyFactory(); in testSerialization()
|
/external/guice/core/test/com/google/inject/internal/ |
D | ProxyFactoryTest.java | 51 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/ |
D | ProxyObjectOutputStream.java | 48 if (ProxyFactory.isProxyClass(cl)) { in writeClassDescriptor() 52 byte[] signature = ProxyFactory.getFilterSignature(cl); in writeClassDescriptor()
|
D | ProxyObjectInputStream.java | 79 ProxyFactory factory = new ProxyFactory(); in readClassDescriptor()
|
D | SerializedProxy.java | 80 ProxyFactory f = new ProxyFactory();
|
D | ProxyFactory.java | 152 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) {
|
D | RuntimeSupport.java | 209 return new SerializedProxy(clazz, ProxyFactory.getFilterSignature(clazz), methodHandler); in makeSerializedProxy()
|
/external/guice/core/src/com/google/inject/internal/ |
D | ProxyFactory.java | 51 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
|
D | ConstructorInjectorStore.java | 82 ConstructionProxyFactory<T> factory = new ProxyFactory<T>(injectionPoint, methodAspects); in createConstructor()
|
/external/guice/ |
D | Android.mk | 36 core/src/com/google/inject/internal/ProxyFactory.java
|