Searched defs:injectionPoint (Results 1 - 15 of 15) sorted by relevance

/external/guice/core/src/com/google/inject/internal/
H A DDefaultConstructionProxyFactory.java36 private final InjectionPoint injectionPoint; field in class:DefaultConstructionProxyFactory
39 * @param injectionPoint an injection point whose member is a constructor of {@code T}.
41 DefaultConstructionProxyFactory(InjectionPoint injectionPoint) { argument
42 this.injectionPoint = injectionPoint;
47 final Constructor<T> constructor = (Constructor<T>) injectionPoint.getMember();
64 return injectionPoint;
94 return injectionPoint;
H A DConstructorInjectorStore.java66 private <T> ConstructorInjector<T> createConstructor(InjectionPoint injectionPoint, Errors errors) argument
71 = injector.getParametersInjectors(injectionPoint.getDependencies(), errors);
75 .get(injectionPoint.getDeclaringType(), errors);
82 ConstructionProxyFactory<T> factory = new ProxyFactory<T>(injectionPoint, methodAspects);
85 ConstructionProxyFactory<T> factory = new DefaultConstructionProxyFactory<T>(injectionPoint);
H A DSingleFieldInjector.java30 final InjectionPoint injectionPoint; field in class:SingleFieldInjector
34 public SingleFieldInjector(InjectorImpl injector, InjectionPoint injectionPoint, Errors errors) argument
36 this.injectionPoint = injectionPoint;
37 this.field = (Field) injectionPoint.getMember();
38 this.dependency = injectionPoint.getDependencies().get(0);
46 return injectionPoint;
57 errors.withSource(injectionPoint).merge(e.getErrors());
H A DSingleMethodInjector.java33 private final InjectionPoint injectionPoint; field in class:SingleMethodInjector
35 SingleMethodInjector(InjectorImpl injector, InjectionPoint injectionPoint, Errors errors) argument
37 this.injectionPoint = injectionPoint;
38 final Method method = (Method) injectionPoint.getMember();
40 parameterInjectors = injector.getParametersInjectors(injectionPoint.getDependencies(), errors);
78 return injectionPoint;
98 errors.withSource(injectionPoint).errorInjectingMethod(cause);
H A DProxyFactory.java55 private final InjectionPoint injectionPoint; field in class:ProxyFactory
67 ProxyFactory(InjectionPoint injectionPoint, Iterable<MethodAspect> methodAspects) { argument
68 this.injectionPoint = injectionPoint;
70 @SuppressWarnings("unchecked") // the member of injectionPoint is always a Constructor<T>
71 Constructor<T> constructor = (Constructor<T>) injectionPoint.getMember();
159 return new DefaultConstructionProxyFactory<T>(injectionPoint).create();
178 return new ProxyConstructor<T>(enhancer, injectionPoint, callbacks, interceptors);
242 final InjectionPoint injectionPoint; field in class:ProxyFactory.ProxyConstructor
250 ProxyConstructor(Enhancer enhancer, InjectionPoint injectionPoint, Callbac argument
[all...]
H A DErrors.java792 InjectionPoint injectionPoint = dependency.getInjectionPoint();
793 if (injectionPoint != null) {
794 formatInjectionPoint(formatter, dependency, injectionPoint, elementSource);
824 InjectionPoint injectionPoint, ElementSource elementSource) {
825 Member member = injectionPoint.getMember();
829 dependency = injectionPoint.getDependencies().get(0);
839 formatSource(formatter, injectionPoint.getMember());
823 formatInjectionPoint(Formatter formatter, Dependency<?> dependency, InjectionPoint injectionPoint, ElementSource elementSource) argument
/external/guice/core/src/com/google/inject/spi/
H A DModuleAnnotatedMethodScanner.java53 InjectionPoint injectionPoint);
52 prepareMethod(Binder binder, Annotation annotation, Key<T> key, InjectionPoint injectionPoint) argument
H A DDependency.java41 private final InjectionPoint injectionPoint; field in class:Dependency
46 Dependency(InjectionPoint injectionPoint, Key<T> key, boolean nullable, int parameterIndex) { argument
47 this.injectionPoint = injectionPoint;
66 for (InjectionPoint injectionPoint : injectionPoints) {
67 dependencies.addAll(injectionPoint.getDependencies());
91 return injectionPoint;
104 return Objects.hashCode(injectionPoint, parameterIndex, key);
110 return Objects.equal(injectionPoint, dependency.injectionPoint)
[all...]
/external/guice/extensions/dagger-adapter/src/com/google/inject/daggeradapter/
H A DDaggerMethodScanner.java46 Binder binder, Annotation rawAnnotation, Key<T> key, InjectionPoint injectionPoint) {
47 Method providesMethod = (Method) injectionPoint.getMember();
45 prepareMethod( Binder binder, Annotation rawAnnotation, Key<T> key, InjectionPoint injectionPoint) argument
/external/guice/extensions/grapher/src/com/google/inject/grapher/
H A DDependencyEdge.java34 private final InjectionPoint injectionPoint; field in class:DependencyEdge
36 public DependencyEdge(NodeId fromId, NodeId toId, InjectionPoint injectionPoint) { argument
38 this.injectionPoint = injectionPoint;
42 return injectionPoint;
50 return super.equals(other) && Objects.equal(injectionPoint, other.injectionPoint);
54 return 31 * super.hashCode() + Objects.hashCode(injectionPoint);
59 + " injectionPoint=" + injectionPoint
[all...]
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/
H A DMultibindingsScanner.java79 InjectionPoint injectionPoint) {
80 Method method = (Method) injectionPoint.getMember();
78 prepareMethod(Binder binder, Annotation annotation, Key<T> key, InjectionPoint injectionPoint) argument
/external/guice/core/test/com/google/inject/spi/
H A DModuleAnnotatedMethodScannerTest.java159 InjectionPoint injectionPoint) {
204 Binder binder, Annotation rawAnnotation, Key<T> key, InjectionPoint injectionPoint) {
158 prepareMethod(Binder binder, Annotation annotation, Key<T> key, InjectionPoint injectionPoint) argument
203 prepareMethod( Binder binder, Annotation rawAnnotation, Key<T> key, InjectionPoint injectionPoint) argument
/external/guice/core/test/com/google/inject/util/
H A DOverrideModuleTest.java726 InjectionPoint injectionPoint) {
725 prepareMethod(Binder binder, Annotation annotation, Key<T> key, InjectionPoint injectionPoint) argument
/external/testng/lib-supplied/
H A Dguice-2.0.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE NOTICE org/ org/testng/ org/testng/guice/ org/testng/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 300 milliseconds