Home
last modified time | relevance | path

Searched refs:BoundAsSingleton (Results 1 – 4 of 4) sorted by relevance

/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/subcomponent/
DBoundAsSingleton.java27 @interface BoundAsSingleton {} annotation
DRequiresSingletons.java25 @BoundAsSingleton UnscopedType unscopedTypeBoundAsSingleton) { in RequiresSingletons()
DParentModule.java42 @Provides @Singleton @BoundAsSingleton UnscopedType provideUnscopedTypeBoundAsSingleton(
/external/guice/core/test/com/google/inject/
DScopesTest.java64 bind(BoundAsSingleton.class).in(Scopes.SINGLETON);
77 BoundAsSingleton.nextInstanceId = 0; in setUp()
91 injector.getInstance(BoundAsSingleton.class), in testSingletons()
92 injector.getInstance(BoundAsSingleton.class)); in testSingletons()
248 assertEquals(1, BoundAsSingleton.nextInstanceId); in testSingletonsInProductionStage()
259 assertEquals(0, BoundAsSingleton.nextInstanceId); in testSingletonsInDevelopmentStage()
459 static class BoundAsSingleton { class in ScopesTest