Home
last modified time | relevance | path

Searched refs:AImpl (Results 1 – 3 of 3) sorted by relevance

/external/guice/core/test/com/google/inject/
DCircularDependencyTest.java42 AImpl.nextId = 0; in setUp()
50 bind(A.class).to(AImpl.class); in testCircularlyDependentConstructors()
62 @Provides @Singleton A a(B b) { return new AImpl(b); } in testCircularlyDependentConstructorsWithProviderMethods()
75 return new AImpl(bp.get()); in testCircularlyDependentConstructorsWithProviderInstances()
112 assertEquals(1, AImpl.nextId); in assertCircularDependencies()
124 static class AImpl implements A { class in CircularDependencyTest
129 @Inject public AImpl(B b) { in AImpl() method in CircularDependencyTest.AImpl
143 return new AImpl(bp.get()); in get()
154 a = new AImpl(bp.get()); in get()
DScopesTest.java153 bind(A.class).to(AImpl.class); in testScopingAnnotationsOnAbstractTypeViaBind()
167 static class AImpl implements A {} class in ScopesTest
/external/libmojo/mojo/public/cpp/bindings/tests/
Dinterface_ptr_unittest.cc664 class AImpl : public A { class
666 AImpl(InterfaceRequest<A> request, const base::Closure& closure) in AImpl() function in mojo::test::__anon865c61480111::AImpl
669 ~AImpl() override {} in ~AImpl()
686 AImpl a_impl(GetProxy(&a), run_loop.QuitClosure()); in TEST_F()