Home | History | Annotate | Download | only in android

Lines Matching refs:blueprint

18 	"github.com/google/blueprint"
23 factory blueprint.ModuleFactory
30 factory blueprint.SingletonFactory
38 bottomUpMutator blueprint.BottomUpMutator
39 topDownMutator blueprint.TopDownMutator
47 // ModuleFactoryAdaptor wraps a ModuleFactory into a blueprint.ModuleFactory by converting a Module
48 // into a blueprint.Module and a list of property structs
49 func ModuleFactoryAdaptor(factory ModuleFactory) blueprint.ModuleFactory {
50 return func() (blueprint.Module, []interface{}) {
58 // SingletonFactoryAdaptor wraps a SingletonFactory into a blueprint.SingletonFactory by converting
59 // a Singleton into a blueprint.Singleton
60 func SingletonFactoryAdaptor(factory SingletonFactory) blueprint.SingletonFactory {
61 return func() blueprint.Singleton {
80 *blueprint.Context
84 return &Context{blueprint.NewContext()}