Home
last modified time | relevance | path

Searched defs:SingletonFactory (Results 1 – 3 of 3) sorted by relevance

/aosp_15_r20/build/soong/android/
H A Dregister.go72 func newSingleton(name string, factory SingletonFactory, parallel bool) singleton {
117 type SingletonFactory func() Singleton type
121 func SingletonFactoryAdaptor(ctx *Context, factory SingletonFactory) blueprint.SingletonFactory {
146 func registerSingletonType(name string, factory SingletonFactory, parallel bool) {
150 func RegisterSingletonType(name string, factory SingletonFactory) {
154 func RegisterParallelSingletonType(name string, factory SingletonFactory) {
234 RegisterParallelSingletonType(name string, factory SingletonFactory)
235 RegisterSingletonType(name string, factory SingletonFactory)
/aosp_15_r20/external/guice/extensions/assistedinject/test/com/google/inject/assistedinject/
H A DFactoryModuleBuilderTest.java636 interface SingletonFactory { interface in FactoryModuleBuilderTest
/aosp_15_r20/build/blueprint/
H A Dcontext.go663 type SingletonFactory func() Singleton type