Home
last modified time | relevance | path

Searched refs:forConstructor (Results 1 – 5 of 5) sorted by relevance

/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java145 InjectionPoint injectionPoint = InjectionPoint.forConstructor(constructor, hashSet); in testForConstructor()
151 InjectionPoint.forConstructor(constructor, new TypeLiteral<LinkedHashSet<String>>() {}); in testForConstructor()
159 InjectionPoint.forConstructor((Constructor) constructor, new TypeLiteral<Set<String>>() {}); in testForConstructor()
/external/guice/extensions/grapher/test/com/google/inject/grapher/
DAbstractInjectorGrapherTest.java139 InjectionPoint.forConstructor(A.class.getConstructor(String.class)))); in testLinkedAndInstanceBindings()
163 InjectionPoint.forConstructor(A2.class.getConstructor(Provider.class))), in testProviderBindings()
/external/guice/core/src/com/google/inject/internal/
DBindingBuilder.java164 InjectionPoint constructorPoint = InjectionPoint.forConstructor(constructor, type); in toConstructor()
/external/guice/core/src/com/google/inject/spi/
DInjectionPoint.java208 public static <T> InjectionPoint forConstructor(Constructor<T> constructor) { in forConstructor() method in InjectionPoint
220 public static <T> InjectionPoint forConstructor( in forConstructor() method in InjectionPoint
/external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
DFactoryProvider2.java519 InjectionPoint ip = InjectionPoint.forConstructor( in findMatchingConstructorInjectionPoint()