Searched refs:methodMatcher (Results 1 – 9 of 9) sorted by relevance
/external/guice/core/src/com/google/inject/internal/ |
D | MethodAspect.java | 35 private final Matcher<? super Method> methodMatcher; field in MethodAspect 47 Matcher<? super Method> methodMatcher, in MethodAspect() argument 50 this.methodMatcher = checkNotNull(methodMatcher, "method matcher"); in MethodAspect() 56 Matcher<? super Method> methodMatcher, in MethodAspect() argument 58 this(classMatcher, methodMatcher, Arrays.asList(interceptors)); in MethodAspect() 66 return methodMatcher.matches(method); in matches()
|
D | EncounterImpl.java | 64 Matcher<? super Method> methodMatcher, in bindInterceptor() argument 73 aspects.add(new MethodAspect(Matchers.any(), methodMatcher, interceptors)); in bindInterceptor()
|
/external/guice/core/src/com/google/inject/spi/ |
D | InterceptorBinding.java | 47 private final Matcher<? super Method> methodMatcher; field in InterceptorBinding 53 Matcher<? super Method> methodMatcher, in InterceptorBinding() argument 57 this.methodMatcher = checkNotNull(methodMatcher, "methodMatcher"); in InterceptorBinding() 71 return methodMatcher; in getMethodMatcher() 89 methodMatcher, in applyTo()
|
D | TypeEncounter.java | 117 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
|
D | Elements.java | 224 Matcher<? super Method> methodMatcher, in bindInterceptor() argument 227 new InterceptorBinding(getElementSource(), classMatcher, methodMatcher, interceptors)); in bindInterceptor()
|
/external/guice/core/src/com/google/inject/ |
D | AbstractModule.java | 144 Matcher<? super Method> methodMatcher, in bindInterceptor() argument 146 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | PrivateModule.java | 206 Matcher<? super Method> methodMatcher, in bindInterceptor() argument 208 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | Binder.java | 205 Matcher<? super Method> methodMatcher, in bindInterceptor() argument
|
/external/guice/core/test/com/google/inject/spi/ |
D | ElementsTest.java | 732 final Matcher<Object> methodMatcher = Matchers.any(); in testBindIntercepor() local 745 bindInterceptor(classMatcher, methodMatcher, methodInterceptor); in testBindIntercepor() 752 assertSame(methodMatcher, command.getMethodMatcher()); in testBindIntercepor()
|