/external/guice/core/test/com/google/inject/ |
D | MethodInterceptionTest.java | 70 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testSharedProxyClasses() 99 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testSharedProxyClasses() 114 bindInterceptor(Matchers.any(), Matchers.any(), new MethodInterceptor() { in testGetThis() 131 bindInterceptor(Matchers.any(), Matchers.any(), new MethodInterceptor() { in testInterceptingFinalClass() 154 bindInterceptor(Matchers.any(),Matchers.returns(only(Foo.class)), in testSpiAccessToInterceptors() 156 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class).or(only(Bar.class))), in testSpiAccessToInterceptors() 182 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor()); in testInterceptedMethodThrows() 183 bindInterceptor(Matchers.any(), Matchers.any(), new CountingInterceptor()); in testInterceptedMethodThrows() 206 bindInterceptor(Matchers.any(), Matchers.returns(only(Foo.class)), in testNotInterceptedMethodsInInterceptedClassDontAddFrames() 261 bindInterceptor(Matchers.any(), new AbstractMatcher<Method>() { in testInterceptingNonBridgeWorks() [all …]
|
D | TypeListenerTest.java | 160 bindInterceptor(any(), buzz, prefixInterceptor("ka")); 161 bindInterceptor(any(), any(), prefixInterceptor("fe")); 165 encounter.bindInterceptor(any(), prefixInterceptor("li")); 166 encounter.bindInterceptor(buzz, prefixInterceptor("no")); 577 encounter.bindInterceptor(any(), new org.aopalliance.intercept.MethodInterceptor() {
|
D | IntegrationTest.java | 37 bindInterceptor(any(), any(), counter); in testIntegration()
|
D | ParentInjectorTest.java | 143 super.bindInterceptor(Matchers.any(), Matchers.returns(Matchers.identicalTo(A.class)), in testInterceptorsInherited()
|
D | BindingTest.java | 296 bindInterceptor(Matchers.any(), Matchers.any(), countingInterceptor); in testToConstructorAndMethodInterceptors()
|
/external/guice/jdk8-tests/test/com/google/inject/jdk8/ |
D | DefaultMethodInterceptionTest.java | 82 bindInterceptor(Matchers.any(), Matchers.annotatedWith(InterceptMe.class), in testInterceptedDefaultMethod() 98 bindInterceptor(Matchers.any(), Matchers.annotatedWith(InterceptMe.class), in testInterceptedDefaultMethod_calledByAnotherMethod() 126 bindInterceptor(Matchers.any(), Matchers.annotatedWith(InterceptMe.class), in testInterceptedDefaultMethod_whenParentClassDefinesNonInterceptedMethod() 161 bindInterceptor(Matchers.any(), Matchers.annotatedWith(InterceptMe.class), in testInterceptedDefaultMethod_whenParentClassDefinesInterceptedMethod() 194 bindInterceptor(Matchers.subclassesOf(Baz.class), Matchers.any(), interceptor); in testInterception_ofAllMethodsOnType() 211 bindInterceptor(Matchers.subclassesOf(BazImpl.class), Matchers.any(), interceptor); in testInterception_ofAllMethodsOnType_interceptsInheritedDefaultMethod()
|
/external/guice/extensions/persist/src/com/google/inject/persist/ |
D | PersistModule.java | 44 bindInterceptor(annotatedWith(Transactional.class), any(), getTransactionInterceptor()); in configure() 46 bindInterceptor(any(), annotatedWith(Transactional.class), getTransactionInterceptor()); in configure()
|
/external/guice/core/src/com/google/inject/ |
D | AbstractModule.java | 168 protected void bindInterceptor(Matcher<? super Class<?>> classMatcher, in bindInterceptor() method in AbstractModule 171 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | PrivateModule.java | 226 protected final void bindInterceptor(Matcher<? super Class<?>> classMatcher, in bindInterceptor() method in PrivateModule 229 binder().bindInterceptor(classMatcher, methodMatcher, interceptors); in bindInterceptor()
|
D | Binder.java | 226 void bindInterceptor(Matcher<? super Class<?>> classMatcher, in bindInterceptor() method
|
/external/guice/core/src/com/google/inject/spi/ |
D | TypeEncounter.java | 119 void bindInterceptor(Matcher<? super Method> methodMatcher, in bindInterceptor() method
|
D | InterceptorBinding.java | 83 binder.withSource(getSource()).bindInterceptor(classMatcher, methodMatcher, in applyTo()
|
D | Elements.java | 224 public void bindInterceptor( in bindInterceptor() method in Elements.RecordingBinder
|
/external/guice/core/test/com/googlecode/guice/ |
D | BytecodeGenTest.java | 55 bindInterceptor(any(), any(), new MethodInterceptor() { 66 bindInterceptor(any(), any(), new MethodInterceptor() {
|
/external/guice/core/src/com/google/inject/internal/ |
D | EncounterImpl.java | 67 public void bindInterceptor(Matcher<? super Method> methodMatcher, in bindInterceptor() method in EncounterImpl
|
/external/guice/core/test/com/google/inject/internal/util/ |
D | LineNumbersTest.java | 65 bindInterceptor(Matchers.only(A.class), Matchers.any(), in testCanHandleLineNumbersForGuiceGeneratedClasses()
|
/external/guice/core/test/com/googlecode/guice/bundle/ |
D | OSGiTestActivator.java | 448 bindInterceptor(new AbstractMatcher<Class<?>>() { in configure()
|
/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/ |
D | FactoryProvider2Test.java | 768 bindInterceptor(Matchers.any(), Matchers.any(), interceptor); in testMethodInterceptorsOnAssistedTypes()
|
/external/guice/core/test/com/google/inject/spi/ |
D | ElementsTest.java | 703 bindInterceptor(classMatcher, methodMatcher, methodInterceptor); in testBindIntercepor()
|