Home
last modified time | relevance | path

Searched refs:forConstructorOf (Results 1 – 6 of 6) sorted by relevance

/external/guice/core/test/com/google/inject/internal/
DProxyFactoryTest.java48 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Simple.class); 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()
137 = new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testWithConstructorArguments()
152 = new ProxyFactory<A>(InjectionPoint.forConstructorOf(A.class), aspects); in testNotProxied()
175 = new ProxyFactory<Counter>(InjectionPoint.forConstructorOf(Counter.class), aspects); in testMultipleInterceptors()
/external/guice/core/src/com/google/inject/spi/
DInjectionPoint.java240 public static InjectionPoint forConstructorOf(TypeLiteral<?> type) { in forConstructorOf() method in InjectionPoint
305 public static InjectionPoint forConstructorOf(Class<?> type) { in forConstructorOf() method in InjectionPoint
306 return forConstructorOf(TypeLiteral.get(type)); in forConstructorOf()
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java168 InjectionPoint injectionPoint = InjectionPoint.forConstructorOf(Constructable.class); in testForConstructorOf()
205 InjectionPoint constructor = InjectionPoint.forConstructorOf(type); in testAddForParameterizedInjections()
/external/guice/core/src/com/google/inject/internal/
DConstructorBindingImpl.java99 constructorInjector = InjectionPoint.forConstructorOf(key.getTypeLiteral()); in create()
/external/guice/core/test/com/google/inject/
DBindingTest.java473 (Constructor)InjectionPoint.forConstructorOf(Bacon.class).getMember()); in testTurkeyBaconProblemUsingToConstuctor()
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider2.java509 return InjectionPoint.forConstructorOf(implementation); in findMatchingConstructorInjectionPoint()